Hiss of released air
Quick dismissExpands to 120% and rises 30% as it fades away.
- Duration
- 0.3s
- Repeats
- No
- Easing
- ease-out
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-pushu {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
100% { transform: translate(0%, -30%) scale(1.2, 1.2); opacity: 0; }
}
.onoma-pushu {
animation: onoma-pushu 0.3s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-pushu-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-pushu { animation: onoma-pushu-fade 0.2s ease-out both; }
}