Gleeful over a windfall
Celebrate a bonusStretches 20% wide, then wobbles a few times back to shape.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-uhauha {
0% { transform: scale(1, 1); }
25% { transform: scale(1.2, 0.82); }
45% { transform: scale(0.88, 1.12); }
65% { transform: scale(1.06, 0.95); }
82% { transform: scale(0.98, 1.02); }
100% { transform: scale(1, 1); }
}
.onoma-uhauha {
animation: onoma-uhauha 0.6s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-uhauha { animation: none; }
}