Lightly, nimbly
Quickly add an itemDrops from 60% above, squashes 4% on landing, hops 20% and stops.
- Duration
- 0.46s
- Repeats
- No
- Easing
- ease-in
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-hyoi {
0% { transform: translate(0%, -60%) scale(1, 1); opacity: 0; animation-timing-function: ease-in; }
8% { transform: translate(0%, -49.33%) scale(1.01, 0.99); opacity: 1; }
45% { transform: translate(0%, 0%) scale(1.04, 0.96); opacity: 1; animation-timing-function: ease-out; }
66% { transform: translate(0%, -20%) scale(0.99, 1.01); opacity: 1; animation-timing-function: ease-in; }
85% { transform: translate(0%, 0%) scale(1.01, 0.99); opacity: 1; }
100% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
}
.onoma-hyoi {
animation: onoma-hyoi 0.46s ease-in both;
}
/* Reduced motion: only fade in */
@keyframes onoma-hyoi-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-hyoi { animation: onoma-hyoi-fade 0.2s ease-out both; }
}