Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> div { largeur: 100px; hauteur: 100px; couleur-de-fond: rouge; animation-name: myAnimation; animation-duration: 4s; } @keyframes myAnimation { 0% {background-color: rouge;} 25% {background-color: jaune;} 50% {background-color: blue;} 100% {background-color: vert;} } </style> </head> <body> <h1>CSS Animation</h1> <div></div> <p><b>Remarque :</b>Lorsque l'animation est terminée, elle revient à son style d'origine.</p> </body> </html>