我正在使用aniCollection使三個框淡入並在頁面加載時向上滑動。它迄今爲止工作得很好,但我想我會盡量讓這些盒子一次出現,以獲得更好的視覺效果。這是效果基本show +淡入的aniCollection代碼:在'this'上使用jQuery .delay()
var element = $('#square');
element.mouseover(function(){
element.toggleClass('fadeInUp animated');
element.one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(e){
$(e.target).removeClass('fadeInUp animated');
});
});
這是我試圖與.delay(counter)
單獨延遲每個箱子:當我運行它
var counter = 0;
var welcomeBoxes = $('#welcomeBoxes');
welcomeBoxes.each(function(){
counter += 300;
$(this).delay(counter).toggleClass('fadeInUp animated');
$(this).delay(counter).one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(e){
$(e.target).removeClass('fadeInUp animated');
});
})
沒有什麼變化。這些盒子仍然全部淡入。任何幫助,將不勝感激。
ID級別必須是唯一的..使用類,而不是..所以通過相同的ID環路其完全錯誤 –
https://api.jquery.com/delay/ – apaul
我很瞎...謝謝你! –