Style transitionProperty 属性 详解
css3基础 2023-07-30 03:28:53小码哥的IT人生shichen
Style transitionProperty 属性
定义和用法
transitionProperty
属性规定过渡效果所针对的 CSS 属性的名称(过渡效果将在指定的 CSS 属性更改时启动)。
提示:当用户将鼠标悬停在元素上时,通常会出现过渡效果。
注释:请始终规定 transitionDuration 属性,否则持续时间为 0,过渡将无效。
另请参阅:
CSS 参考手册:transition-property 属性
实例
将鼠标悬停在 div 元素上以逐渐改变其宽度和高度:
document.getElementById("myDIV").style.transitionProperty = "width,height";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
border: 1px solid black;
background-color: lightblue;
width: 270px;
height: 200px;
overflow: auto;
transition: all 2s;
}
#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";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 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 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
26.0 | 10.0 | 16.0 | 6.1 | 12.1 |