Fidget shyly
Shy characterRocks 5° each way on its bottom edge, forever.
- Duration
- 1s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-mojimoji {
0% { transform: rotate(-5deg); }
100% { transform: rotate(5deg); }
}
.onoma-mojimoji {
animation: onoma-mojimoji 1s ease-in-out infinite alternate both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-mojimoji { animation: none; }
}