1秒ごとにアニメーションがあり、[停止]ボタンがあります。ボタンをクリックすると、アニメーションは停止しますが、その後も続行されます。アニメーションを削除する別の方法はありませんか?これは私の コードです。
$(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();
});
ありがとう