Worn out and crumpled
Show exhaustionBends 12° each way, wriggling side to side, forever.
- Duration
- 1.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-yoreyore {
0% { transform: rotate(4deg) skewY(-12deg); }
100% { transform: rotate(-4deg) skewY(12deg); }
}
.onoma-yoreyore {
animation: onoma-yoreyore 1.8s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-yoreyore { animation: none; }
}