我每秒钟都有一个动画,并且我有一个停止按钮,当我单击该按钮时,动画会停止,但之后会继续。没有其他方法可以删除动画吗?这是我的 代码。
$(document).ready(function() {
setInterval(function() {
$("#myImg").animate({top: '50%',left: '50%',width: '174px',height: '174px',padding: '10px'}, 500);
$("#myImg").animate({ marginTop: '0',marginLeft: '0',top: '0',left: '0',width: '70px',height: '70px',padding: '5px'}, 600);
},1000);
});
$("#stop").click(function(){
$("#myImg").stop();
});
谢谢