Hiss out in an instant
Dismiss a notificationPuffs to 112%, then shrinks to a point and disappears.
- Duration
- 0.3s
- Repeats
- No
- Easing
- ease-in
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-ju {
0% { transform: scale(1, 1); opacity: 1; }
25% { transform: scale(1.12, 1.12); opacity: 1; }
100% { transform: scale(0, 0); opacity: 0; }
}
.onoma-ju {
animation: onoma-ju 0.3s ease-in both;
}
/* Reduced motion: only fade out */
@keyframes onoma-ju-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-ju { animation: onoma-ju-fade 0.2s ease-out both; }
}