HTML - DOM Style 对象 animationDelay 属性



HTML DOM Style 对象 **animationDelay** 属性用于设置动画开始之前的延迟时间,单位为秒或毫秒。

语法

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

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

属性值

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

描述
time 它表示在动画开始之前等待的时间,单位为秒或毫秒。其默认值为 0。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

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

在此示例中,我们将动画延迟设置为 5 秒。

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

支持的浏览器

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