Lumber sluggishly
Waiting on slow workStaggers 8% side to side, tipping on its base, forever.
- Duration
- 3s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-nosonoso {
0% { transform: translate(-8%, 0%) rotate(-5deg); }
30% { transform: translate(3.2%, 0%) rotate(4deg); }
50% { transform: translate(-2.4%, 0%) rotate(-2.5deg); }
80% { transform: translate(8%, 0%) rotate(5deg); }
100% { transform: translate(-8%, 0%) rotate(-5deg); }
}
.onoma-nosonoso {
animation: onoma-nosonoso 3s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-nosonoso { animation: none; }
}