HTML - DOM样式对象 animationName 属性



HTML DOM 样式对象 **animationName** 属性用于获取或设置 @keyframes 动画的动画名称。

语法

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

设置 animationName 属性
object.style.animationName= "none | keyframename | initial | inherit";
获取 animationName 属性
object.style.animationName;

属性值

描述
none 这是默认值,表示没有动画。
keyframename 指定要绑定到选择器的关键帧的名称。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

HTML DOM 样式对象“animationName”属性示例

以下示例根据 animationName 属性更改动画。

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

支持的浏览器

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