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