Go through smoothly
Done without a hitchRises 12% from below at 95% scale while fading in.
- Duration
- 0.8s
- Repeats
- No
- Easing
- cubic-bezier(.2,.8,.2,1)
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-sunnari {
0% { transform: translate(0%, 12%) scale(0.95, 0.95); opacity: 0; }
100% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
}
.onoma-sunnari {
animation: onoma-sunnari 0.8s cubic-bezier(.2,.8,.2,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-sunnari-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-sunnari { animation: onoma-sunnari-fade 0.2s ease-out both; }
}