Style transitionDelay 属性 详解
css3基础 2023-07-30 03:35:10小码哥的IT人生shichen
Style transitionDelay 属性
定义和用法
transitionDelay
属性规定过渡效果何时开始。
transitionDelay 值以秒 (s) 或毫秒 (ms) 为单位定义。
另请参阅:
CSS 参考手册:transition-delay 属性
实例
在过渡效果开始之前等待 2 秒:
document.getElementById("myDIV").style.transitionDelay = "2s";
完整实例【亲自试一试】:
<!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 元素上。这些更改将等待 2 秒才会发生:</p>
<button onclick="myFunction()">试一试</button>
<div id="myDIV">
<h1>myDIV</h1>
</div>
<script>
function myFunction() {
document.getElementById("myDIV").style.transitionDelay = "2s";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 transitionDelay 属性:
object.style.transitionDelay
设置 transitionDelay 属性:
object.style.transitionDelay = "time|initial|inherit"
属性值
值 | 描述 |
---|---|
time | 规定过渡效果开始之前要等待的秒数或毫秒数。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | 0 |
---|---|
返回值: | 字符串,表示元素的 transition-delay 属性。 |
CSS 版本: | CSS3 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
26.0 | 10.0 | 16.0 | 6.1 | 12.1 |