Brush it off breezily
Carefree reactionWiggles 2 time(s), up to 8°, then settles.
- Duration
- 0.5s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-sabasaba {
0% { transform: rotate(0deg); }
20% { transform: rotate(8deg); }
40% { transform: rotate(-6deg); }
60% { transform: rotate(4deg); }
80% { transform: rotate(-2deg); }
100% { transform: rotate(0deg); }
}
.onoma-sabasaba {
animation: onoma-sabasaba 0.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-sabasaba { animation: none; }
}