jquery setInterval 创建动画构建
创建了一个画廊
我使用 setInterval fiddle
该画廊效果很好,唯一的问题是如果有人离开页面探索另一个“浏览器选项卡”,返回图库页面,看起来像 setInterval()
与 jQuery .animate()
结合创建了一个奇怪的动画构建。
为了让我自己清楚:当您从另一个打开的“浏览器选项卡”返回该页面时 - 动画似乎已经缓存了所有动画,现在正在尝试立即补偿所有动画。
请任何建议,我们将不胜感激。
谢谢
I created a gallery using setInterval
fiddle
The gallery works great, the only problem is that if someone leaves the page exploring another 'browser tab', coming back to the gallery page, it looks likesetInterval()
in combination with the jQuery .animate()
creates a strange animation buildup.
To make my self clear: when you come back from another opened 'browser tab' to the page - the animation seem like it has cached all the animations and now is trying to compensate all the animations at once.
Please any advice will be greatly appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该在这里执行
setInterval()
。您永远不能假设您的动画将在下一个时间间隔内及时完成。始终在回调中使用 setTimeout:然后使用
clearTimeout()
而不是clearInterval()
You should not be doing
setInterval()
here. You can never assume that your animation will be finished in time for the next interval. Always use setTimeout inside a callback:Then later on, use
clearTimeout()
instead ofclearInterval()