我怎样才能使它成为更好的递归动画 jQuery 脚本?
这个想法是为云 div 制作动画并让它永久地水平来回动画。这是可行的,但不幸的是我认为它很容易出现内存泄漏和 UI 滞后。任何建议将不胜感激,谢谢。
function animateCloud() {
$('#cloud').animate({ right: '+=500' }, { duration: 35000, easing: "linear", queue: true });
animateOpposite();
}
function animateOpposite() {
$('#cloud').animate({ right: '-=500' }, { duration: 35000, easing: "linear", queue: true });
animateCloud();
}
$(document).ready(function() {
animateCloud();
});
The idea is to animate a cloud div and to have it animate back and forth horizontally in perpetuity. This works, but unfortunately I think it's prone to memory leaks and UI lag. Any advice would be appreciate, thanks.
function animateCloud() {
$('#cloud').animate({ right: '+=500' }, { duration: 35000, easing: "linear", queue: true });
animateOpposite();
}
function animateOpposite() {
$('#cloud').animate({ right: '-=500' }, { duration: 35000, easing: "linear", queue: true });
animateCloud();
}
$(document).ready(function() {
animateCloud();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您的代码根本不会泄漏内存,但您可以创建更短的调用。
示例: http://www.jsfiddle.net/bh3f4/
I don't think that your code leaks memory at all, but you can create the call shorter.
example: http://www.jsfiddle.net/bh3f4/
http://api.jquery.com/animate/
使用可选的回调参数。当动画完成时,jquery 将调用您的函数。是为其他方向赋予动画效果的最佳时机。
http://api.jquery.com/animate/
Use the optional callback argument. When an animation finishes, jquery will call your function. Perfect time to animate other direction.