我在一个.fadeIn()
随机的数组中有大量的 div。
在最后一个立方体中,我单独制作动画以使用返回函数,我想触发另一个函数:
for (var i = 0; i < 800; i++) {
getCube(i).animate({ opacity: 1}, Math.floor(Math.random()*1000)});
if (/* next to last cube is done with animation */)
{ getCube(799).animate({ opacity: 1}, 500, function() {
// some function
});
}
}
问题是,如何才能得到最长的时间animate()
来开始最后一个动画。
希望你明白我的意思。干杯