CSS3 transition-delay
transition-delay屬性用來設定過渡動畫執行的延遲時間。
更多關於transition內容可以參閱CSS3 transition一章節。
語法結構:
[CSS] 純文字檢視 複製程式碼transition-delay:<time>[ ,<time> ]*
引數解析:
(1).<time>:設定過渡動畫開始執行的延遲時間。
特別說明:設定多個時間用逗號分隔,和transition-property設定的屬性一一對應。
程式碼例項:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> #ant{ width:100px; height:100px; background:blue; transition-property:width,height; transition-duration:2s; transition-delay:2s; } #ant:hover{ width:500px; height:200px; } </style> </head> <body> <div id="ant"></div> </body> </html>
滑鼠懸浮在div之上需要延遲兩秒再執行動畫效果。
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> #ant{ width:100px; height:100px; background:blue; transition-property:width,height; transition-duration:2s,6s; transition-delay:2s,6s; } #ant:hover{ width:500px; height:200px; } </style> </head> <body> <div id="ant"></div> </body> </html>
滑鼠懸浮於div之上的要分別延遲2秒和6秒才開始指向寬度和高度動畫過渡效果。
相關文章
- CSS3CSSS3
- CSS3簡明教程之初識CSS3CSSS3
- CSS3 quotesCSSS3
- css3省略……CSSS3
- CSS3 remCSSS3REM
- CSS3 vhCSSS3
- CSS3 vwCSSS3
- CSS3 vmaxCSSS3
- CSS3 vminCSSS3
- CSS3 TransitionCSSS3
- CSS3 @supportsCSSS3
- CSS3 currentColorCSSS3
- CSS3 clipCSSS3
- CSS3 ::SelectionCSSS3
- CSS3 counter()CSSS3
- CSS3 attr()CSSS3
- CSS3 orderCSSS3
- CSS3 @keyframesCSSS3
- CSS3 rotate()CSSS3
- CSS3 columnsCSSS3
- css3 漸變CSSS3
- CSS3之背景CSSS3
- CSS3 perspective(n)CSSS3
- CSS3象棋效果CSSS3
- CSS3 之 flexCSSS3Flex
- css3 新特性CSSS3
- CSS3 七 字型CSSS3
- CSS3筆記CSSS3筆記
- CSS3新特性CSSS3
- css3漸變CSSS3
- CSS3初識CSSS3
- CSS3簡明教程之徵服CSS3選擇器CSSS3
- CSS3選擇器02—CSS3部分選擇器CSSS3
- css3核心屬性CSSS3
- CSS3 動畫解析CSSS3動畫
- CSS3 animation 練習CSSS3
- CSS3 transform-styleCSSS3ORM
- CSS3 矩形切角效果CSSS3