Whir as it rewinds
Rewind or loadingSpins 2 turn(s) in place, repeating.
- Duration
- 0.5s
- Repeats
- Yes
- Easing
- cubic-bezier(.45,0,.55,1)
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-kyurukyuru {
0% { transform: rotate(0deg); }
100% { transform: rotate(720deg); }
}
.onoma-kyurukyuru {
animation: onoma-kyurukyuru 0.5s cubic-bezier(.45,0,.55,1) infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kyurukyuru { animation: none; }
}