我有一个名为particleAppear
的JS函数,它是一个循环:
var particles = new Array("pt0","pt1","pt2","pt3");
function particleAppear(){
var genPoint = Math.floor(Math.random() * (720 - 4 + 1)) + 4;
var particle = particles[Math.floor(Math.random()*particles.length)];
$('#particles').append('<div class="'+particle+'" style="position: absolute; top: '+genPoint+'px; left: -4px"></div>');
var rtime1 = Math.floor(Math.random() * (42000 - 32000 + 1)) + 32000;
var rtime2 = Math.floor(Math.random() * (42000 - 32000 + 1)) + 32000;
var rtime3 = Math.floor(Math.random() * (42000 - 32000 + 1)) + 32000;
var rtime4 = Math.floor(Math.random() * (42000 - 32000 + 1)) + 32000;
$('.pt0').animate({left: '+=1280px'}, rtime1, "linear",function(){
$(this).remove();
});
$('.pt1').animate({left: '+=1280px'}, rtime2, "linear",function(){
$(this).remove();
});
$('.pt2').animate({left: '+=1280px'}, rtime3, "linear",function(){
$(this).remove();
});
$('.pt3').animate({left: '+=1280px'}, rtime4, "linear",function(){
$(this).remove();
});
var randomTimeGen = Math.floor(Math.random() * (1500 - 450 + 1)) + 450;
setTimeout(particleAppear,randomTimeGen);
}
正如您所看到的,使用的循环不是setInterval,而是setTimeout,它会在450到1500ms之间的随机时间之后重新运行该函数。如何使用JAVASCRIPT / JQUERY停止此操作?
答案 0 :(得分:4)
您可以将超时的数字ID存储在变量中并清除它:
var timeout = setTimeout(particleAppear,randomTimeGen);
clearTimeout(timeout);
答案 1 :(得分:3)
使用clearTimeout()
。
在函数之外创建一个变量:
var timeout;
在你的功能中
timeout = setTimeout(particleAppear,randomTimeGen);
在您的代码的其他地方,您可以致电:
clearTimeout(timeout);
答案 2 :(得分:2)
您可以停止运行该功能,就像停止使用setInterval
var timeout;
function particleAppear(){
/* ... */
timeout = setTimeout(particleAppear, randomTimeGen)
}
// Somewhere else
clearInterval(timeout);