Dead drunk and wobbly
Unstable, wobbly stateStaggers 26% side to side, tipping on its base, forever.
- Duration
- 2.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-gudenguden {
0% { transform: translate(-26%, 0%) rotate(-20deg); }
30% { transform: translate(10.4%, 0%) rotate(16deg); }
50% { transform: translate(-7.8%, 0%) rotate(-10deg); }
80% { transform: translate(26%, 0%) rotate(20deg); }
100% { transform: translate(-26%, 0%) rotate(-20deg); }
}
.onoma-gudenguden {
animation: onoma-gudenguden 2.6s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gudenguden { animation: none; }
}