Explode
Blow up and vanishBursts out to 210% and vanishes.
- Duration
- 0.46s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-bon {
0% { transform: scale(1, 1); opacity: 1; }
35% { transform: scale(1.55, 1.55); opacity: 1; }
100% { transform: scale(2.1, 2.1); opacity: 0; }
}
.onoma-bon {
animation: onoma-bon 0.46s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-bon-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-bon { animation: onoma-bon-fade 0.2s ease-out both; }
}