Humming along
Cheerful idleRocks 6° each way on its bottom edge, forever.
- Duration
- 0.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-funfun {
0% { transform: rotate(-6deg); }
100% { transform: rotate(6deg); }
}
.onoma-funfun {
animation: onoma-funfun 0.8s ease-in-out infinite alternate both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-funfun { animation: none; }
}