Boom and resonate
Chime / major alertBeats up to 145%, beats once more smaller, then settles.
- Duration
- 1.1s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-boon {
0% { transform: scale(1, 1); }
20% { transform: scale(1.45, 1.45); }
40% { transform: scale(0.91, 0.91); }
60% { transform: scale(1.18, 1.18); }
100% { transform: scale(1, 1); }
}
.onoma-boon {
animation: onoma-boon 1.1s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-boon { animation: none; }
}