每个函数内的 JQuery 队列/延迟()
我希望这个函数延迟每个函数内的每个动画。那是一个接着一个。此刻他们都在一起了。
$('.bounceholder ul:eq(' + bounceholder + ') li').each(function(){
$(this).delay(1000).animate({left: bounceoffset, top:-8, opacity:0.6, leaveTransforms:true}, {duration:600, queue:true});
bounceoffset += 160;
});
I would like this function to delay each animation inside the each function. That is one after the other. At the moment they all come through together.
$('.bounceholder ul:eq(' + bounceholder + ') li').each(function(){
$(this).delay(1000).animate({left: bounceoffset, top:-8, opacity:0.6, leaveTransforms:true}, {duration:600, queue:true});
bounceoffset += 160;
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您传递给
each
的块/函数可以接受计数器/索引作为第一个参数:the block/function you pass to
each
can accept the counter/index as first argument: