Flustered and muddled
Stumped reactionStaggers 11% side to side, tipping on its base, forever.
- Duration
- 1.88s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-shidoromodoro {
0% { transform: translate(-11%, 0%) rotate(-8deg); }
30% { transform: translate(4.4%, 0%) rotate(6.4deg); }
50% { transform: translate(-3.3%, 0%) rotate(-4deg); }
80% { transform: translate(11%, 0%) rotate(8deg); }
100% { transform: translate(-11%, 0%) rotate(-8deg); }
}
.onoma-shidoromodoro {
animation: onoma-shidoromodoro 1.88s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shidoromodoro { animation: none; }
}