Quick single turn
Toggle or refreshTwirls 1 turn(s) in place and stops.
- Duration
- 0.4s
- Repeats
- No
- Easing
- cubic-bezier(.5,0,.3,1)
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-kuru {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.onoma-kuru {
animation: onoma-kuru 0.4s cubic-bezier(.5,0,.3,1) both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kuru { animation: none; }
}