一段时间后幻灯片停止了?
为什么下面的代码不能真正工作并在 5 分钟后停止?
var x = 0;
var s = 0;
function cicle() {
if (x < 2) {
$("#slide").animate({
"right": "-=893px"
}, 1500);
x++;
s++;
} else {
x = 0;
s++;
$("#slide").animate({
"right": "0px"
}, 1000);
}
};
var a = setInterval("cicle()", 5000);
if (s == 10) {
clearInterval(a);
var a = setInterval("cicle()", 5000);
}
why not work true following code and after 5 min stopped?
var x = 0;
var s = 0;
function cicle() {
if (x < 2) {
$("#slide").animate({
"right": "-=893px"
}, 1500);
x++;
s++;
} else {
x = 0;
s++;
$("#slide").animate({
"right": "0px"
}, 1000);
}
};
var a = setInterval("cicle()", 5000);
if (s == 10) {
clearInterval(a);
var a = setInterval("cicle()", 5000);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
setInterval
的第一个参数更改为cicle
:希望它能解决您的问题。
也许在添加新动画之前停止动画会更好:
Change the first parameter of
setInterval
tocicle
:I hope it solves your problem.
Maybe it would be better to stop the animation before adding a new one: