Small things squirm about
Lots of new arrivalsBends 8° each way, wriggling side to side, forever.
- Duration
- 0.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-uyouyo {
0% { transform: rotate(10deg) skewY(-8deg); }
100% { transform: rotate(-10deg) skewY(8deg); }
}
.onoma-uyouyo {
animation: onoma-uyouyo 0.5s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-uyouyo { animation: none; }
}