1、 在jq版本里每次在animate前加上 $(obj).stop(true,true); 可以解决
2、 方法二:
var timer=null;
window .onfocus=function(){
timer=setInterval(autoRun,1000);
}
window.onblur=function(){
clearInterval(timer);
}
1、 在jq版本里每次在animate前加上 $(obj).stop(true,true); 可以解决
2、 方法二:
var timer=null;
window .onfocus=function(){
timer=setInterval(autoRun,1000);
}
window.onblur=function(){
clearInterval(timer);
}