Por 9.99€ al mes tendrás acceso completo a todos los cursos. Sin matrícula ni permanencia.
Keyframes
div.box1{
width:300px;
height:300px;
background: red;
}
div.box1:hover{
animation:move 2s;
}
@keyframes move{
from{transform:rotate(0deg);}
to{transform:rotate(45deg);}
}
Descompuesto
animation-name:move;
animation-duration:2s;
animation-timing-function:ease-in;
animation-iteration-count:2; /* infinite para infinitas repeticiones */