Head reeling and ringing
Dizzy, confusedSpins 1 turn(s) while shrinking 25% and back, forever.
- Duration
- 1.8s
- Repeats
- Yes
- Easing
- linear
- Animates
- Rotation · Scale rotate scale
Show CSS
@keyframes onoma-guwanguwan {
0% { transform: rotate(0deg) scale(1, 1); }
50% { transform: rotate(180deg) scale(0.75, 0.75); }
100% { transform: rotate(360deg) scale(1, 1); }
}
.onoma-guwanguwan {
animation: onoma-guwanguwan 1.8s linear infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-guwanguwan { animation: none; }
}