:animated
尋找所有正在執行動畫效果的元素。
傳回值
Array<Element>
範例
只有對不在執行動畫效果的元素執行一個動畫特效。
HTML 代碼:
<button id="run">Run</button><div></div>
jQuery 代碼:
$("#run").click(function(){
$("div:not(:animated)").animate({ left: "+=20" }, 1000);
});
全站熱搜
部落格全站分類:不設分類
尋找所有正在執行動畫效果的元素。
Array<Element>
只有對不在執行動畫效果的元素執行一個動畫特效。
<button id="run">Run</button><div></div>
$("#run").click(function(){
$("div:not(:animated)").animate({ left: "+=20" }, 1000);
});
留言列表