Spinning Rotation Loop

Loop
Loader
CSS
CSS Animation
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>