我試圖通過滑塊來創建文本動畫的環... 我嘗試循環,但它沒有工作.. 你能告訴我怎麼做我這個循環腳本forever..thanks如何讓這個jQuery動畫代碼循環永久?
<script>
$(document).ready(function() {
$("#header").hide();
var headerOne='I';
var headerTwo='Am';
var headerThree='So';
var headerFour='Cool';
$("#header").html(headerOne);
$("#header").fadeIn(1000);
$('#header').delay(1000).fadeOut(1000,function(){
$(this).html(headerTwo).fadeIn(1000);
$('#header').delay(1000).fadeOut(1000,function(){
$(this).html(headerThree).fadeIn(1000);
$('#header').delay(1000).fadeOut(1000,function(){
$(this).html(headerFour).fadeIn(1000).delay(1000).fadeOut(1000);
});
});
});
});
</script>
謝謝!
的setInterval可以幫助'的setInterval(「JavaScript函數」,毫秒);' –
@Bondye,如果這是一個答案那就活該2個downvotes - 一個混合'setInterval'與jQuery動畫,另一個用於傳遞字符串到'setInterval'。 – Alnitak