Heres a rotation path of text around and image with a link on the text to a page url, and an animated image rotation.
4/5 - (2 votes)
Heres a rotation path of text around and image with a link on the text to a page url, and an animated image rotation.
selector svg{
animation: rotate 15s linear infinite;
}
@-webkit-keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}