©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
transition-delay:<time>[ ,<time> ]*
默认值:0
适用于:所有元素,包含伪对象:after和:before
继承性:无
动画性:否
计算值:指定值
媒体:交互
<time>:指定对象过渡的延迟时间
如果提供多个属性值,以逗号进行分隔。
对应的脚本特性为transitionDelay。
Values | IE | Firefox | Chrome | Safari | Opera | iOS Safari | Android Browser | Android Chrome |
---|---|---|---|---|---|---|---|---|
Basic Support | 6.0-9.0 | 2.0-3.6 | 4.0-25.0-webkit- | 6.0-webkit- | 15.0+ | 6.0-6.1-webkit- | 2.1-4.3-webkit- | 18.0-24.0-webkit- |
10.0+ | 4.0-15.0-moz- | 26.0+ | 6.1+ | 7.0+ | 4.4.4+ | 25.0+ | ||
16.0+ |
<!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8" /> <title>transition-delay_CSS参考手册_web前端开发参考手册系列</title> <meta name="author" content="Joy Du(飘零雾雨), dooyoe@gmail.com, www.doyoe.com" /> <style> h1{font-size:16px;} .test{overflow:hidden;width:100%;margin:0;padding:0;list-style:none;} .test li{width:220px;height:100px;margin:1px 5px;padding:10px;border:1px solid #ddd;background-color:#eee;color:#000; -moz-transition-property:all; -moz-transition-duration:.5s; -moz-transition-timing-function:ease; -webkit-transition-property:all; -webkit-transition-duration:.5s; -webkit-transition-timing-function:ease; transition-property:all; transition-duration:.5s; transition-timing-function:ease; } .test li:nth-child(1){-moz-transition-delay:.1s;-webkit-transition-delay:.1s;transition-delay:.1s;} .test li:nth-child(2){-moz-transition-delay:.3s;-webkit-transition-delay:.3s;transition-delay:.3s;} .test li:nth-child(3){-moz-transition-delay:.5s;-webkit-transition-delay:.5s;transition-delay:.5s;} .test li:nth-child(4){-moz-transition-delay:.7s;-webkit-transition-delay:.7s;transition-delay:.7s;} .test li:nth-child(5){-moz-transition-delay:.9s;-webkit-transition-delay:.9s;transition-delay:.9s;} .test li:hover{border-color:#999;background-color:#bbb;color:#999;} </style> </head> <body> <h1>请将鼠标移动到下面的矩形上:</h1> <ul class="test"> <li>延迟0.1s后开始过渡</li> <li>延迟0.3s后开始过渡</li> <li>延迟0.5s后开始过渡</li> <li>延迟0.7s后开始过渡</li> <li>延迟0.9s后开始过渡</li> </ul> </body> </html>
点击 "运行实例" 按钮查看在线实例