Tumble and bounce
Item arrivesDrops from 60% above, squashes 12% on landing, hops 16% and stops.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-in
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-koron {
0% { transform: translate(0%, -60%) scale(1, 1); opacity: 0; animation-timing-function: ease-in; }
8% { transform: translate(0%, -49.33%) scale(1.02, 0.98); opacity: 1; }
45% { transform: translate(0%, 0%) scale(1.12, 0.88); opacity: 1; animation-timing-function: ease-out; }
66% { transform: translate(0%, -16%) scale(0.97, 1.03); opacity: 1; animation-timing-function: ease-in; }
85% { transform: translate(0%, 0%) scale(1.04, 0.96); opacity: 1; }
100% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
}
.onoma-koron {
animation: onoma-koron 0.6s ease-in both;
}
/* Reduced motion: only fade in */
@keyframes onoma-koron-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-koron { animation: onoma-koron-fade 0.2s ease-out both; }
}