当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery :animated用法及代码示例


用法
animated selector

说明:选择在选择器运行时动画正在进行中的所有元素。

  • 添加的版本:1.2jQuery( ":animated" )

注意:如果您使用自定义 jQuery 构建without the effects module, 这:animated选择器会抛出错误。

其他注意事项:

  • 因为 :animated 是 jQuery 扩展而不是 CSS 规范的一部分,所以使用 :animated 的查询无法利用本机 DOM querySelectorAll() 方法提供的性能提升。为了在使用 :animated 选择元素时获得最佳性能,首先使用纯 CSS 选择器选择元素,然后使用 .filter(":animated")

例子:

更改任何动画 div 的颜色。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>animated demo</title>
  <style>
  div {
    background: yellow;
    border: 1px solid #AAA;
    width: 80px;
    height: 80px;
    margin: 0 5px;
    float: left;
  }
  div.colored {
    background: green;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.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>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 :animated。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。