回答編集履歴
1
ソース修正
answer
CHANGED
@@ -9,9 +9,9 @@
|
|
9
9
|
function showNextTxt() {
|
10
10
|
txtIndex++;
|
11
11
|
if(txtIndex != txtMax){
|
12
|
-
txts.eq(txtIndex
|
12
|
+
txts.eq(txtIndex).fadeIn(200).delay(300).fadeOut(200, showNextTxt);
|
13
13
|
}else{
|
14
|
-
txts.eq(txtIndex
|
14
|
+
txts.eq(txtIndex).fadeIn(200);
|
15
15
|
}
|
16
16
|
}
|
17
17
|
showNextTxt();
|