Dawdle and hesitate
Processing is stalledStaggers 5% 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-guzuguzu {
0% { transform: translate(-5%, 0%) rotate(-4deg); }
30% { transform: translate(2%, 0%) rotate(3.2deg); }
50% { transform: translate(-1.5%, 0%) rotate(-2deg); }
80% { transform: translate(5%, 0%) rotate(4deg); }
100% { transform: translate(-5%, 0%) rotate(-4deg); }
}
.onoma-guzuguzu {
animation: onoma-guzuguzu 3s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-guzuguzu { animation: none; }
}