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