.animate
jQuery無限ループ ブレーク メソッドの解決策に興味があります。
$(element).mouseover(function() {
$(this).animate({ opacity: 1 }, duration, customFunc);
}).mouseout(function() {
});
そして問題は、このループをどのように断ち切るかです。例えばmouseout
イベント内?
私はそれを簡単に行うことができますがsetInterval
、関数clearInterval
でそれを行う方法はあり.animate
ますか?