Код: Выделить всё
.class{
transform: rotate(0deg);
}
.class:hover{
transform: rotate(360deg);
}
Код: Выделить всё
.class{
animation-name: out;
animation-duration:2s;
}
.class:hover{
animation-name: in;
animation-duration:5s;
animation-iteration-count:infinite;
}
@keyframe in{
to {transform: rotate(360deg);}
}
@keyframe out{
to {transform: rotate(0deg);}
}
http:/ /jsfiddle.net/khalednabil/eWzBm/
Подробнее здесь: https://stackoverflow.com/questions/165 ... fter-hover