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