Leaves rustle faintly
Calm idle stateSwings 4° each way from its top edge, forever.
- Duration
- 2.4s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-sayasaya {
0% { transform: rotate(-4deg); }
100% { transform: rotate(4deg); }
}
.onoma-sayasaya {
animation: onoma-sayasaya 2.4s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-sayasaya { animation: none; }
}