Home >Web Front-end >CSS Tutorial >How to delay transition effects using CSS
Use the transition-delay property of CSS to delay the transition effect. You can try running the following code to set a 1 second transition delay:
Online Demo
<!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>
The above is the detailed content of How to delay transition effects using CSS. For more information, please follow other related articles on the PHP Chinese website!