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.
如何暂时禁用特定元素上的“脉动”jQuery UI 效果?比如这样:
$('#player2,#score2').effect("pulsate", { times:5 }, 2000);
要停止使用 jQuery 的 FX 队列的任何动画,请使用:
.stop( [clearQueue ] [, jumpToEnd ] ).
.stop( [clearQueue ] [, jumpToEnd ] )
$('#player2,#score2').stop(true,true);
您当然必须随时重新启动动画.. !!