Zoom away
Message sentCrouches, then shoots 400% upward and vanishes.
- Duration
- 0.6s
- Repeats
- No
- Easing
- cubic-bezier(.6,0,.9,.4)
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-byuun {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; animation-timing-function: ease-out; }
20% { transform: translate(0%, 8%) scale(1.08, 0.9); opacity: 1; }
100% { transform: translate(0%, -400%) scale(0.92, 1.12); opacity: 0; }
}
.onoma-byuun {
animation: onoma-byuun 0.6s cubic-bezier(.6,0,.9,.4) both;
}
/* Reduced motion: only fade out */
@keyframes onoma-byuun-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-byuun { animation: onoma-byuun-fade 0.2s ease-out both; }
}