HTML - DOM Style 对象 animationDuration 属性



HTML DOM Style 对象 **animationDuration** 属性用于指定动画完成一个循环所需的时间长度。它的默认值为 0。

语法

以下是获取或设置属性的语法。

设置属性
object.style.animationDuration= "time | initial | inherit";
获取属性
object.style.animationDuration;

属性值

此属性接受以下列出的值。

描述
time 用于指定动画完成一个循环所需的时间。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的 animation-duration 属性。

HTML DOM Style 对象“animationDuration”属性示例

以下示例说明了 animation duration 属性。

设置动画持续时间

在以下示例中,我们设置了动画持续时间。

<!DOCTYPE html>
<html>
<head>
    <title>HTML DOM Style Object animation-Duration Property</title>
    <style>
        #animation {
            width: 100px;
            height: 100px;
            background: #04af2f;
            position: relative;
            animation: right infinite;
        }
        @keyframes right {
            from {
                left: 0px;
            }
            to {
                left: 400px;
            }
        }
    </style>
</head>
<body>
    <p>Click to change the direction of animation.</p>
    <button onclick="fun()">Click me</button>
    <div id="animation"></div>
    <script>
        function fun() {
            document.getElementById("animation").style.animationDuration = "3s";
        }
    </script>
</body>
</html>

更改动画速度

在此示例中,我们通过改变持续时间来更改动画速度。

<!DOCTYPE html>
<html>
<head>
    <title>HTML DOM Style Object animation-Duration Property</title>
    <style>
        #animation {
            width: 100px;
            height: 100px;
            background: #04af2f;
            position: relative;
            animation: right infinite;
        }
        @keyframes right {
            from {
                left: 0px;
            }
            to {
                left: 400px;
            }
        }
    </style>
</head>
<body>
    <p>Click to change the direction of animation.</p>
    <button onclick="fun()">Speed Up</button>
    <button onclick="funtwo()">Speed Down</button>
    <div id="animation"></div>
    <script>
        function fun() {
            document.getElementById("animation").style.animationDuration = "1s";
        }
        function funtwo() {
            document.getElementById("animation").style.animationDuration = "5s";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
animationDuration 是 43 是 12 是 16 是 9 是 30
html_dom_style_object_reference.htm
广告