Jquery/Javascript 动画
我将如何让 div 按顺序出现和消失?我的计划是有 6 个不同的 div:1-6 按顺序出现。然后几秒钟后,它们将消失(6-1)并再次按顺序重新出现。
How would I go about making divs appear and disappear in sequential order? My plan is to have a 6 different divs: 1-6 appear in sequential order. Then after a couple of seconds, they will disappear (6-1) and reappear in sequential order again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这应该可以解决问题:
.delay() 是在 jQuery 1.4 中引入的。
I think that should do the trick:
.delay() was introduced in jQuery 1.4.