Toss far away
Send / shareCrouches, then shoots 350% upward and vanishes.
- Duration
- 0.8s
- Repeats
- No
- Easing
- cubic-bezier(.6,0,.9,.4)
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-poon {
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%, -350%) scale(0.92, 1.12); opacity: 0; }
}
.onoma-poon {
animation: onoma-poon 0.8s cubic-bezier(.6,0,.9,.4) both;
}
/* Reduced motion: only fade out */
@keyframes onoma-poon-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-poon { animation: onoma-poon-fade 0.2s ease-out both; }
}