使用CSS的transition-delay屬性來延遲過渡效果。您可以嘗試執行以下程式碼來設定1秒的過渡延遲:
線上示範
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 150px; background: blue; transition: width 3s; transition-delay: 1s; } div:hover { width: 250px; } </style> </head> <body> <h1>Heading One</h1> <p>Hover over the below box to change its width. It begins with a delay of 1 second.</p> <div></div> </body> </html>
以上是如何使用CSS延遲過渡效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!