Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の要素に対する「脈動」jQueryUI効果を一時的に無効にするにはどうすればよいですか?このような:
$('#player2,#score2').effect("pulsate", { times:5 }, 2000);
jQueryのFXキューを使用するアニメーションを停止するには、次を使用します。
.stop( [clearQueue ] [, jumpToEnd ] )。
.stop( [clearQueue ] [, jumpToEnd ] )
$('#player2,#score2').stop(true,true);
もちろん、アニメーションを再開する必要があります.. !!