Les Animations
Création d'une animation
Code HTML :
Code CSS :
div{
background-color: grey;
width: 90px;
height: 20px;
animation: changeCouleur 2s infinite alternate; /*Mise en place de l'animation */
margin:auto;}
@keyframes changeCouleur{ /* @keyframes = étapes de l"animation */
0%{
background-color: red;
width: 100px;
transform: rotateZ(-10deg);
}
50%{
background-color: green;
}
100%{
background-color: blue ;
width: 500px;
transform: rotateZ(10deg);}
}