Go round and round
Thinking / processingSpins 2 turn(s) while shrinking 10% and back, forever.
- Duration
- 1.2s
- Repeats
- Yes
- Easing
- linear
- Animates
- Rotation · Scale rotate scale
Show CSS
@keyframes onoma-guruguru {
0% { transform: rotate(0deg) scale(1, 1); }
50% { transform: rotate(360deg) scale(0.9, 0.9); }
100% { transform: rotate(720deg) scale(1, 1); }
}
.onoma-guruguru {
animation: onoma-guruguru 1.2s linear infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-guruguru { animation: none; }
}