Little chuckle
A little delightWiggles 2 time(s), up to 5°, then settles.
- Duration
- 0.4s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-fufu {
0% { transform: rotate(0deg); }
20% { transform: rotate(5deg); }
40% { transform: rotate(-3.75deg); }
60% { transform: rotate(2.5deg); }
80% { transform: rotate(-1.25deg); }
100% { transform: rotate(0deg); }
}
.onoma-fufu {
animation: onoma-fufu 0.4s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-fufu { animation: none; }
}