Wag
Character joyBends 11° each way, wriggling side to side, forever.
- Duration
- 0.58s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-furifuri {
0% { transform: rotate(10deg) skewY(-11deg); }
100% { transform: rotate(-10deg) skewY(11deg); }
}
.onoma-furifuri {
animation: onoma-furifuri 0.58s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-furifuri { animation: none; }
}