Utilisez la propriété animation-delay pour définir le délai de démarrage de l'animation via CSS.
Vous pouvez essayer d'exécuter le code suivant pour implémenter la propriété animation-delay -
Live Demo
<!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>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!