Billow out
Vanish in smokeExpands to 180% and rises 15% as it fades away.
- Duration
- 0.9s
- Repeats
- No
- Easing
- ease-out
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-bowa {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
100% { transform: translate(0%, -15%) scale(1.8, 1.8); opacity: 0; }
}
.onoma-bowa {
animation: onoma-bowa 0.9s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-bowa-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-bowa { animation: onoma-bowa-fade 0.2s ease-out both; }
}