Wilted and droopy
Low-energy characterDroops 16% downward from its top, slowly, and back.
- Duration
- 2.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Skew · Scale skewY scale
Show CSS
@keyframes onoma-shioshio {
0% { transform: skewY(0deg) scale(1, 1); }
100% { transform: skewY(4deg) scale(0.96, 1.16); }
}
.onoma-shioshio {
animation: onoma-shioshio 2.6s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shioshio { animation: none; }
}