Gentle sway
Draw attentionSwings 7° each way from its top edge, forever.
- Duration
- 1.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-yurayura {
0% { transform: rotate(-7deg); }
100% { transform: rotate(7deg); }
}
.onoma-yurayura {
animation: onoma-yurayura 1.8s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-yurayura { animation: none; }
}