Soft and bendy
Squishy, soft feelBends 20° 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-kunyakunya {
0% { transform: rotate(4deg) skewY(-20deg); }
100% { transform: rotate(-4deg) skewY(20deg); }
}
.onoma-kunyakunya {
animation: onoma-kunyakunya 1.2s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kunyakunya { animation: none; }
}