Just a tiny bit
A small additionGrows from nothing to 108%, dips slightly, then settles.
- Duration
- 0.3s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-choko {
0% { transform: scale(0, 0); opacity: 0; }
45% { transform: scale(1.08, 1.08); opacity: 1; animation-timing-function: ease-in-out; }
72% { transform: scale(0.97, 0.97); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-choko {
animation: onoma-choko 0.3s ease-out both;
}
/* Reduced motion: only fade in */
@keyframes onoma-choko-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-choko { animation: onoma-choko-fade 0.2s ease-out both; }
}