HTML - DOM样式对象animationDirection属性



HTML DOM 样式对象**animationDirection**属性设置动画的方向。其默认值为normal。要使此属性生效,动画设置不能设置为只播放一次。

语法

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

设置属性
object.style.animationDirection = "normal | reverse | alternate | alternate-reverse | initial | inherit";
获取属性
object.style.animationDirection;

属性值

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

描述
normal 此属性值按正常方式播放动画,即向前播放。
reverse 它反向播放动画。
alternate 它交替播放正向和反向动画,奇数次为正向,偶数次为反向。
alternate-reverse 它是alternate的反向。动画先反向播放,然后正向播放。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

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

以下示例演示了animation-direction属性。

将动画方向设置为正常和反向

在以下示例中,我们将动画方向设置为normal和reverse。

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

将动画方向设置为alternate和alternate-reverse

在以下示例中,我们将动画方向首先设置为alternate,然后设置为alternate-reverse。

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

支持的浏览器

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