Move stiffly and jerkily
Awkward moodSnaps between 10° left and right, like a ticking clock.
- Duration
- 1.4s
- Repeats
- Yes
- Easing
- cubic-bezier(.6,0,.4,1)
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-gikushaku {
0% { transform: rotate(-10deg); }
40% { transform: rotate(-10deg); }
50% { transform: rotate(10deg); }
90% { transform: rotate(10deg); }
100% { transform: rotate(-10deg); }
}
.onoma-gikushaku {
animation: onoma-gikushaku 1.4s cubic-bezier(.6,0,.4,1) infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gikushaku { animation: none; }
}