Burst with a ringing bang
Celebration effectBursts out to 230% and vanishes.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-paan {
0% { transform: scale(1, 1); opacity: 1; }
35% { transform: scale(1.65, 1.65); opacity: 1; }
100% { transform: scale(2.3, 2.3); opacity: 0; }
}
.onoma-paan {
animation: onoma-paan 0.6s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-paan-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-paan { animation: onoma-paan-fade 0.2s ease-out both; }
}