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