Fit exactly
Align preciselyZooms from 85% scale straight to full size.
- Duration
- 0.4s
- Repeats
- No
- Easing
- cubic-bezier(.2,.9,.3,1)
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-kitchiri {
0% { transform: scale(0.85, 0.85); opacity: 0; }
60% { transform: scale(0.94, 0.94); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-kitchiri {
animation: onoma-kitchiri 0.4s cubic-bezier(.2,.9,.3,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-kitchiri-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-kitchiri { animation: onoma-kitchiri-fade 0.2s ease-out both; }
}