Style animationDuration 属性

Style 对象参考手册 Style 对象

改变 <div> 元素的 animationDuration 属性:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <style>
    div {
      width: 100px;
      height: 100px;
      background: red;
      position: relative;
      animation: mymove 5s infinite;
      /*Safari、Chrome 和 Opera*/
      -webkit-animation: mymove 5s infinite;
    }

    @keyframes mymove {
      from {
        left: 0px;
      }
      to {
        left: 200px;
      }
    }
    /*Safari、Chrome 和 Opera*/

    @-webkit-keyframes mymove {
      from {
        left: 0px;
      }
      to {
        left: 200px;
      }
    }
  </style>
</head>
<body>

  <p>点击“尝试一下”按钮来加快动画,缩短持续时间。</p>
  <button onclick="myFunction()">尝试一下</button>
  <script>
    function myFunction() {
      document.getElementById("myDIV").style.animationDuration = "1s";
      // 针对 Chrome、Safari 和 Opera 的代码
      document.getElementById("myDIV").style.WebkitAnimationDuration = "1s";
    }
  </script>
  <p><strong>注意:</strong>只有 Firefox 支持 animationDuration 属性。</p>
  <div id="myDIV"></div>

</body>
</html>

尝试一下 »


定义和用法

animationDuration 属性定义动画完成一个周期需要花费的秒数。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

只有 Firefox 支持 animationDuration 属性。


语法

返回 animationDuration 属性:

object.style.animationDuration

设置 animationDuration 属性:

object.style.animationDuration = "time|initial|inherit"

属性值

描述
time 规定动画完成的长度。默认值为 0,意味着没有动画。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

默认值: 0
返回值: 字符串,表示元素的 animation-duration 属性。
CSS 版本 CSS3

相关文章

CSS 参考手册:animation-duration 属性


Style 对象参考手册 Style 对象