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