Muggy heat rushes out
Show hot airExpands to 160% and rises 20% as it fades away.
- Duration
- 0.8s
- Repeats
- No
- Easing
- ease-out
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-muwa {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
100% { transform: translate(0%, -20%) scale(1.6, 1.6); opacity: 0; }
}
.onoma-muwa {
animation: onoma-muwa 0.8s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-muwa-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-muwa { animation: onoma-muwa-fade 0.2s ease-out both; }
}