Unsteady on your feet
Something is offStaggers 10% side to side, tipping on its base, forever.
- Duration
- 1.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-furafura {
0% { transform: translate(-10%, 0%) rotate(-10deg); }
30% { transform: translate(4%, 0%) rotate(8deg); }
50% { transform: translate(-3%, 0%) rotate(-5deg); }
80% { transform: translate(10%, 0%) rotate(10deg); }
100% { transform: translate(-10%, 0%) rotate(-10deg); }
}
.onoma-furafura {
animation: onoma-furafura 1.8s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-furafura { animation: none; }
}