Slither like a snake
Playful idle motionBends 22° each way, wriggling side to side, forever.
- Duration
- 1.2s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-nyoronyoro {
0% { transform: rotate(12deg) skewY(-22deg); }
100% { transform: rotate(-12deg) skewY(22deg); }
}
.onoma-nyoronyoro {
animation: onoma-nyoronyoro 1.2s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-nyoronyoro { animation: none; }
}