Style transitionProperty 属性

Style 对象参考手册 Style 对象

把鼠标指针悬停在 div 元素上,它的宽度和高度会逐渐改变:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <style>
    #myDIV {
      border: 1px solid black;
      background-color: lightblue;
      width: 270px;
      height: 200px;
      overflow: auto;
      transition: all 2s;
      -webkit-transition: all 2s;
      /* 针对 Safari */
    }

    #myDIV:hover {
      background-color: coral;
      width: 570px;
      height: 500px;
      padding: 100px;
      border-radius: 50px;
    }
  </style>
</head>
<body>

  <p>把鼠标指针悬停在 DIV 元素上,它将逐渐改变颜色和尺寸大小!</p>
  <p>点击“尝试一下”按钮,再次把鼠标指针悬停在 DIV 元素上。改变将仍然发生,但是只有宽度和高度会逐渐改变。</p>
  <button onclick="myFunction()">尝试一下</button>
  <div id="myDIV">
    <h1>myDIV</h1>
  </div>
  <script>
    function myFunction() {
      document.getElementById("myDIV").style.transitionProperty = "width,height";
      document.getElementById("myDIV").style.WebkitTransitionProperty = "width,height";
    }
  </script>
  <p>Internet Explorer 10、Firefox、Opera 和 Chrome 支持 transitionProperty 属性。</p>
  <p>Safari 支持另一个可替代该属性的属性,即 WebkitTransitionProperty 属性。</p>

</body>
</html>

尝试一下 »


定义和用法

transitionProperty 属性规定应用过渡效果的 CSS 属性的名称。(当指定的 CSS 属性改变时,过渡效果将开始)。

提示:过渡效果通常在用户把鼠标指针悬停在元素上时发生。

注意:请始终设置 transitionDuration 属性,否则持续时间为 0,就不会产生过渡效果。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 10、Firefox、Opera 和 Chrome 支持 transitionProperty 属性。

Safari 支持另一个可替代该属性的属性,即 WebkitTransitionProperty 属性。

注意:Internet Explorer 9 及其之前的版本不支持 transitionProperty 属性。


语法

返回 transitionProperty 属性:

object.style.transitionProperty

设置 transitionProperty 属性:

object.style.transitionProperty = "none|all|property|initial|inherit"

属性值

描述
none 没有属性会获得过渡效果。
all 默认值。所有属性都将获得过渡效果。
property 定义应用过渡效果的 CSS 属性名称列表,列表以逗号分隔。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

默认值: all
返回值: 字符串,表示元素的 transition-property 属性。
CSS 版本 CSS3

相关文章

CSS 参考手册:transition-property 属性


Style 对象参考手册 Style 对象