:animated

选择所有正在执行动画的元素。

示例:

改变正在执行动画的 div 的颜色。

<!DOCTYPE html>
<html>
<head>
<style>
  div { background:yellow; border:1px solid #AAA; width:80px; height:80px; margin:0 5px; float:left; }
  div.colored { background:green; }
  </style>
<script src="jquery.min.js"></script>
</head>
<body>

<button id="run">Run</button>

  <div></div>
  <div id="mover"></div>
  <div></div>

<script>



    $("#run").click(function(){
      $("div:animated").toggleClass("colored");
    });
    function animateIt() {
      $("#mover").slideToggle("slow", animateIt);
    }
    animateIt();


</script>
</body>
</html>
演示: