HTML - DOM样式对象transition属性



HTML DOM 样式对象transition属性是下面提到的四个transition属性的简写属性

  • transitionProperty
  • transitionDuration
  • transitionTimingFunction
  • transitionDelay

当鼠标悬停在任何块级元素上时,更改其CSS属性会添加类似动画的效果。

语法

设置transition属性
object.style.transition= "property duration timing-function delay | initial | inherit";
获取transition属性
object.style.transition;

属性值

描述
transitionProperty 用于指定设置过渡效果的CSS属性名称。
transitionDuration 用于指定过渡效果完成所需的时间(秒或毫秒)。如果此属性值设置为0,则transition属性将无效。
transitionTimingFunction 用于指定过渡的速度曲线。
transitionDelay 指定过渡效果开始的时间。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

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

以下示例设置div元素的transition属性,该属性在悬停时会更改其高度、宽度、颜色、背景颜色和边框颜色。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object transition Property
    </title>
    <style>
        #transition {
            padding: 50px;
            height: 200px;
            width: 200px;
            border: 2px solid black;
            margin: auto;
            background-color: azure;
        }
        #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>
    <div id="transition">
        Hover over div to see transition effect.
    </div>
    <script>
        function fun() {
            document.getElementById("transition")
                .style.transition = "all 1s linear";
        } 
    </script>
</body>
</html>

支持的浏览器

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