Stretch way out
Pull to refreshStretches 75% upward from its base and springs back.
- Duration
- 1s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-biyoon {
0% { transform: scale(1, 1); }
40% { transform: scale(0.74, 1.75); }
70% { transform: scale(1.07, 0.85); }
88% { transform: scale(1, 1.04); }
100% { transform: scale(1, 1); }
}
.onoma-biyoon {
animation: onoma-biyoon 1s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-biyoon { animation: none; }
}