:animated | jQuery API 3.2 中文文档 | jQuery API 在线手册

jQuery API 3.2.1

推荐办理招商信用卡,新户首刷礼,五折享美食,需要的速度围观~click here
首页  >  选择器  > :animated 源码下载

返回值:Array<Element(s)>:animated

V1.2概述

匹配所有正在执行动画效果的元素

示例

描述:

只有对不在执行动画效果的元素执行一个动画特效

HTML 代码:
            <button id="run">Run</button><div></div>
          
jQuery 代码:
            $("#run").click(function(){
  $("div:not(:animated)").animate({ left: "+=20" }, 1000);
});