Use the animation-delay property to set the delay for the start of animation via CSS.
You can try running the following code to implement the animation-delay property -
Live Demonstration
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; background-color: yellow; animation-name: myanim; animation-duration: 2s; animation-delay: 2s; } @keyframes myanim { from { background-color: green; } to { background-color: blue; } } </style> </head> <body> <div></div> </body> </html>
The above is the detailed content of CSS animation delay property. For more information, please follow other related articles on the PHP Chinese website!