Blow out
Dismiss a noticeExpands to 120% and rises 10% as it fades away.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-out
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-fu {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
100% { transform: translate(0%, -10%) scale(1.2, 1.2); opacity: 0; }
}
.onoma-fu {
animation: onoma-fu 0.36s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-fu-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-fu { animation: onoma-fu-fade 0.2s ease-out both; }
}