Arrive in heaps
Lots of new itemsDrops from 200% above, squashes 28% on landing, hops 8% and stops.
- Duration
- 1s
- Repeats
- No
- Easing
- ease-in
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-dossari {
0% { transform: translate(0%, -200%) scale(1, 1); opacity: 0; animation-timing-function: ease-in; }
8% { transform: translate(0%, -164.44%) scale(1.05, 0.95); opacity: 1; }
45% { transform: translate(0%, 0%) scale(1.28, 0.72); opacity: 1; animation-timing-function: ease-out; }
66% { transform: translate(0%, -8%) scale(0.93, 1.07); opacity: 1; animation-timing-function: ease-in; }
85% { transform: translate(0%, 0%) scale(1.09, 0.91); opacity: 1; }
100% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
}
.onoma-dossari {
animation: onoma-dossari 1s ease-in both;
}
/* Reduced motion: only fade in */
@keyframes onoma-dossari-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-dossari { animation: onoma-dossari-fade 0.2s ease-out both; }
}