Softly scrunched
Soft, fabric-like feelBends 6° each way, wriggling side to side, forever.
- Duration
- 1s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-kushukushu {
0% { transform: rotate(3deg) skewY(-6deg); }
100% { transform: rotate(-3deg) skewY(6deg); }
}
.onoma-kushukushu {
animation: onoma-kushukushu 1s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kushukushu { animation: none; }
}