Dither and hesitate
Show indecisionRocks 4° each way on its bottom edge, forever.
- Duration
- 2.2s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-ujiuji {
0% { transform: rotate(-4deg); }
100% { transform: rotate(4deg); }
}
.onoma-ujiuji {
animation: onoma-ujiuji 2.2s ease-in-out infinite alternate both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-ujiuji { animation: none; }
}