Grow fast and steadily
Growth / rising statsStretches 60% upward from its base and springs back.
- Duration
- 1.2s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-gungun {
0% { transform: scale(1, 1); }
40% { transform: scale(0.79, 1.6); }
70% { transform: scale(1.06, 0.88); }
88% { transform: scale(1, 1.04); }
100% { transform: scale(1, 1); }
}
.onoma-gungun {
animation: onoma-gungun 1.2s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gungun { animation: none; }
}