Pop right out
Pull an item outCrouches, then shoots 120% upward and vanishes.
- Duration
- 0.4s
- Repeats
- No
- Easing
- cubic-bezier(.6,0,.9,.4)
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-supon {
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%, -120%) scale(0.92, 1.12); opacity: 0; }
}
.onoma-supon {
animation: onoma-supon 0.4s cubic-bezier(.6,0,.9,.4) both;
}
/* Reduced motion: only fade out */
@keyframes onoma-supon-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-supon { animation: onoma-supon-fade 0.2s ease-out both; }
}