Huff and look away
Aloof attitudeWiggles 1 time(s), up to 20°, then settles.
- Duration
- 0.5s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-fun {
0% { transform: rotate(0deg); }
33.33% { transform: rotate(20deg); }
66.67% { transform: rotate(-10deg); }
100% { transform: rotate(0deg); }
}
.onoma-fun {
animation: onoma-fun 0.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-fun { animation: none; }
}