-5
我有我的主頁的JS循環。 但我不知道我怎麼能對這個詞停止「來簡單的」的Javascript:如何停止循環一詞
<h2 class = 'open'> Life Can Be <span class = 'changeable'><b>Radical</b></span></h2>
<script>
var c=0, words=['Interesting','Fun','Exciting','Crazy', 'Simple'];
function loop(){
$('h2 span').delay(1000).fadeTo(300,0,function(){
$(this).text(words[++c%words.length]).fadeTo(300,1,loop);
});
}
loop(); // start it!
</script>
如果您需要了解更多信息,請讓我知道,而不是反對投票。我是Javascript新手,似乎無法找到解決方案,我可能會忽略它。
由於只是陣列
的最後一個元素之前。它的工作 – VVD
謹慎解釋你的解決方案? –