A cheer goes up
Celebrate a big winBeats up to 132%, beats once more smaller, then settles.
- Duration
- 0.9s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-waa {
0% { transform: scale(1, 1); }
20% { transform: scale(1.32, 1.32); }
40% { transform: scale(0.94, 0.94); }
60% { transform: scale(1.13, 1.13); }
100% { transform: scale(1, 1); }
}
.onoma-waa {
animation: onoma-waa 0.9s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-waa { animation: none; }
}