小码哥的IT人生

Style transition 属性 详解

css3基础 2023-07-30 03:25:59小码哥的IT人生shichen

Style transition 属性

定义和用法

transition 属性是四个过渡属性的简写属性:

  1. transitionProperty
  2. transitionDuration
  3. transitionTimingFunction
  4. transitionDelay

注释:请始终规定 transitionDuration 属性,否则持续时间为 0,过渡将无效。

另请参阅:

CSS 参考手册:transition 属性

实例

将鼠标悬停在 div 元素上以逐渐改变其外观:

document.getElementById("myDIV").style.transition = "all 2s";

完整实例【亲自试一试】:

<!DOCTYPE html>
<html>
<head>
<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";
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

语法

返回 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

浏览器支持

表中的数字注明了首个完全支持该属性的浏览器版本。

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
26.0 10.0 16.0 6.1 12.1

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024