Style transition 属性

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;
    }

    #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.transition = "all 2s";
      document.getElementById("myDIV").style.WebkitTransition = "all 2s";
    }
  </script>
  <p>Internet Explorer 10、Firefox、Opera 和 Chrome 支持 transition 属性。</p>
  <p>Safari 支持另一个可替代该属性的属性,即 WebkitTransition 属性。</p>

</body>
</html>

尝试一下 »


定义和用法

transition 属性是一个速记属性,用于设置四个过渡属性:

transitionProperty、 transitionDuration、 transitionTimingFunction 和 transitionDelay.

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


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

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

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

语法

返回 transition 属性:

object.style.transition

设置 transition 属性:

object.style.transition = "property duration timing-function delay|initial|inherit"

属性值

描述
transitionProperty 规定应用过渡效果的 CSS 属性的名称。
transitionDuration 规定完成过渡效果需要多少秒或毫秒。
transitionTimingFunction 规定过渡效果的速度曲线。
transitionDelay 定义过渡效果何时开始。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

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

相关文章

CSS 参考手册:transition 属性


Style 对象参考手册 Style 对象