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