Keep fretting
Downcast characterSwings 4° each way from its top edge, forever.
- Duration
- 2.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-kuyokuyo {
0% { transform: rotate(-4deg); }
100% { transform: rotate(4deg); }
}
.onoma-kuyokuyo {
animation: onoma-kuyokuyo 2.6s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kuyokuyo { animation: none; }
}