如何在 jQuery 中永久运行 .animate 函数?
$(this).css("left","100px");
function endless(){
$(this).animate({
left:'-=100px',
},{
easing: "linear",
duration: 5000,
complete: function() {
$(this).css('left','100px');
endless();
}
});
};
endless();
这就是我尝试过的,但是使用这种方法我无法让东西移动。 我正在使用 jQuery 1.3.2。 有什么建议么?
$(this).css("left","100px");
function endless(){
$(this).animate({
left:'-=100px',
},{
easing: "linear",
duration: 5000,
complete: function() {
$(this).css('left','100px');
endless();
}
});
};
endless();
This is what I tried, but using this approach i can't get stuff moving.
Im' using jQuery 1.3.2.
Any Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
伟大的! 这正是我所寻找的,但现在,
我终于找到了如何切换它。 使用以下函数,调用endless(0) 停止动画循环,调用endless(1) 启用动画循环。
感谢初始代码!
Great! this is exactly what i searched for, but now,
i finally figured how to toggle it. with the following function, call endless(0) to stop, and endless(1) to enable animation loop.
thanx for initial code!
您的动画参数错误。 它不需要选项哈希,只需要缓动、持续时间和回调的实际选项。 另外,使用
this
时需要小心。 最好将其作为参数传递给无限函数。You have the parameters to animate wrong. It doesn't take an options hash, just the actual options for easing, duration, and a callback. Also, you need to take care when using
this
. Better to pass it in as an argument to the endless function.您需要从回调中调用 Endless() 。
You'll need to call endless() from within a callback.
您需要将
$(this)
替换为要设置动画的元素的选择器。You need to replace
$(this)
with the selector to element that you want to animate.