$(document).ready(function fadeIt() {
$("#cool_content > div").hide();
var sizeLoop = $("#cool_content > div").length;
var startLoop = 0;
$("#cool_content > div").first().eq(startLoop).fadeIn(500);
setInterval(function () {
$("#cool_content > div").eq(startLoop).fadeOut(1000);
if (startLoop == sizeLoop) {
startLoop = 0
} else {
startLoop++;
}
$("#cool_content > div").eq(startLoop).fadeIn(1500);
}, 2000);
});
在这里,我想要一类 div 无限动画!
但是,因为间隔设置为两秒,所以有一段时间没有显示 div!
循环这些 div 的动画的合适方法是什么?
我考虑过使用 for 循环,但不知道如何将一类 div 作为参数传递。感谢您的所有帮助。
谢谢!