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