返回值:Array<Element(s)>:animated
V1.2jQuery :animated 選擇器概述
匹配所有正在執(zhí)行動畫效果的元素
示例
描述:
只有對不在執(zhí)行動畫效果的元素執(zhí)行一個動畫特效
HTML 代碼:
<button id="run">Run</button><div></div>
jQuery 代碼:
$("#run").click(function(){
$("div:not(:animated)").animate({ left: "+=20" }, 1000);
});