Tall and slender
Stretch out tallStretches 55% upward from its base and springs back.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-sura {
0% { transform: scale(1, 1); }
40% { transform: scale(0.81, 1.55); }
70% { transform: scale(1.05, 0.89); }
88% { transform: scale(1, 1.03); }
100% { transform: scale(1, 1); }
}
.onoma-sura {
animation: onoma-sura 0.6s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-sura { animation: none; }
}