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