Limp and soft
Show going limpDroops 32% downward from its top, slowly, and back.
- Duration
- 1.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Skew · Scale skewY scale
Show CSS
@keyframes onoma-shinashina {
0% { transform: skewY(0deg) scale(1, 1); }
100% { transform: skewY(4deg) scale(0.92, 1.32); }
}
.onoma-shinashina {
animation: onoma-shinashina 1.8s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shinashina { animation: none; }
}