[rotate animation] #animation #css
.example {
-webkit-animation: rotation 2s infinite linear;
animation: rotation 2s infinite linear;
}
@-webkit-keyframes rotation {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(359deg); }
}
/*
source:
https://codepen.io/vitoralberto/pen/OPYyYB?editors=1100
*/