Twist the body once
Shy or coy reactionWiggles 2 time(s), up to 18°, then settles.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-kune {
0% { transform: rotate(0deg); }
20% { transform: rotate(18deg); }
40% { transform: rotate(-13.5deg); }
60% { transform: rotate(9deg); }
80% { transform: rotate(-4.5deg); }
100% { transform: rotate(0deg); }
}
.onoma-kune {
animation: onoma-kune 0.6s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kune { animation: none; }
}