HTML - DOM Style 对象 transitionProperty 属性



HTML DOM Style 对象的 **transitionProperty** 属性指定将应用过渡效果的 CSS 属性名称。首先 CSS 属性发生更改,然后对 transitionProperty 指定的 CSS 属性执行过渡效果。

语法

设置 transitionProperty 属性
object.style.transitionProperty= "none | all | property | initial | inherit";
获取 transitionProperty 属性
object.style.transitionProperty;

属性值

描述
none 指定任何元素都不应用过渡效果。
all 默认值,指定所有元素都将获得过渡效果。
property 指定一个用逗号分隔的 CSS 属性名称列表,我们为其设置过渡效果。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

HTML DOM Style 对象“transitionProperty”属性的示例

在此示例中,我们已将 **height** 和 **width** 设置为属性值,即单击“设置过渡”按钮,然后将鼠标悬停在 div 上将仅对高度和宽度显示过渡效果,其余样式将在鼠标悬停时立即更改。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object transitionProperty Property
    </title>
    <style>
        #transition {
            padding: 50px;
            height: 200px;
            width: 200px;
            border: 2px solid black;
            margin: auto;
            background-color: azure;
            transition: 1s linear;
        }
        #transition:hover {
            padding: 50px;
            height: 250px;
            width: 250px;
            border: 2px solid yellow;
            margin: auto;
            background-color: #04af2f;
            color: white;
        }
    </style>
</head>
<body>
    <p>
        Click to set transition property.
    </p>
    <button onclick="fun()">Set Transition</button>
    <section id="transition">
        Hover over div to see transition effect.
    </section>
    <script>
        function fun() {
            document.getElementById("transition")
                .style.transitionProperty = "height, width";
        } 
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
transitionProperty 是 26 是 12 是 16 是 9 是 12.1
html_dom_style_object_reference.htm
广告