在 setInterval 函数中更改函数参数
有没有办法将这五个 setTimeouts 放入一个 setInterval 中?我需要在每个时间间隔后以某种方式切换函数的参数。基本上,我希望能够清除动画而不必清除 5 个 setTimeouts。这是动画。 www.hodaradesign.com。谢谢!
<script type="text/javascript">
$(window).load(function () {
setTimeout ("pulse('1')", 300);
setTimeout ("pulse('2')", 500);
setTimeout ("pulse('3')", 700);
setTimeout ("pulse('4')", 900);
setTimeout ("pulse('5')", 1100);
});
function pulse(n) {
$(".roll"+n).animate({"opacity": "0"}, 650);
setTimeout (function (){
$(".roll"+n).animate({"opacity": "1"}, 350);
},800)
};
</script>
Is there a way to put those five setTimeouts into one setInterval? I need to somehow switch the parameter of the function after each interval. Basically, I want to be able to clear the animation without having to clear 5 setTimeouts. Here is the anim. www.hodaradesign.com. thanks!
<script type="text/javascript">
$(window).load(function () {
setTimeout ("pulse('1')", 300);
setTimeout ("pulse('2')", 500);
setTimeout ("pulse('3')", 700);
setTimeout ("pulse('4')", 900);
setTimeout ("pulse('5')", 1100);
});
function pulse(n) {
$(".roll"+n).animate({"opacity": "0"}, 650);
setTimeout (function (){
$(".roll"+n).animate({"opacity": "1"}, 350);
},800)
};
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
向脚本添加另一个参数来指定当前超时,然后使用函数本身来增加计数并确定何时(以及是否)发生下一次调用。
Add another parameter to the script to specify the current timeout, then use the function itself to increment the count and determine when (and if) the next invocation occurs.
试试这个:
Try this:
使用
setInterval
调用和函数都可以访问的变量。Use a variable that both the
setInterval
call and the function can access.