Splash
Dismiss with a splashBursts out to 190% and vanishes.
- Duration
- 0.4s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-basha {
0% { transform: scale(1, 1); opacity: 1; }
35% { transform: scale(1.45, 1.45); opacity: 1; }
100% { transform: scale(1.9, 1.9); opacity: 0; }
}
.onoma-basha {
animation: onoma-basha 0.4s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-basha-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-basha { animation: onoma-basha-fade 0.2s ease-out both; }
}