Gush out at once
Show a flood of itemsGrows from nothing to 138%, dips slightly, then settles.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-doba {
0% { transform: scale(0, 0); opacity: 0; }
45% { transform: scale(1.38, 1.38); opacity: 1; animation-timing-function: ease-in-out; }
72% { transform: scale(0.87, 0.87); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-doba {
animation: onoma-doba 0.6s ease-out both;
}
/* Reduced motion: only fade in */
@keyframes onoma-doba-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-doba { animation: onoma-doba-fade 0.2s ease-out both; }
}