Mushy and jumbled
Mix / scrambleBends 14° 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-guchagucha {
0% { transform: rotate(12deg) skewY(-14deg); }
100% { transform: rotate(-12deg) skewY(14deg); }
}
.onoma-guchagucha {
animation: onoma-guchagucha 0.5s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-guchagucha { animation: none; }
}