Unwind with a whir
RewindingSpins 1 turn(s) in place, repeating.
- Duration
- 0.94s
- Repeats
- Yes
- Easing
- cubic-bezier(.45,0,.55,1)
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-shurushuru {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.onoma-shurushuru {
animation: onoma-shurushuru 0.94s cubic-bezier(.45,0,.55,1) infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shurushuru { animation: none; }
}