Spinning Rotation Loop
Loop
Loader
CSS
CSS Animation
Preview Links
Custom JS
Enable custom code in preview or view on published site.
Enable custom code?
Last Updated: Nov 7, 2025
<style>
@keyframes rotation-1-animation {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.rotation-1_wrap {
animation-name: rotation-1-animation;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: linear;
animation-play-state: running;
}
</style>