Stretchy, stringy goo
Pull or drag feedbackStretches 50% upward from its base and springs back.
- Duration
- 1.4s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-nebaneba {
0% { transform: scale(1, 1); }
40% { transform: scale(0.82, 1.5); }
70% { transform: scale(1.05, 0.9); }
88% { transform: scale(1, 1.03); }
100% { transform: scale(1, 1); }
}
.onoma-nebaneba {
animation: onoma-nebaneba 1.4s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-nebaneba { animation: none; }
}