Something big sways heavily
Draw attentionRocks 10° each way on its bottom edge, forever.
- Duration
- 1.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-yusayusa {
0% { transform: rotate(-10deg); }
100% { transform: rotate(10deg); }
}
.onoma-yusayusa {
animation: onoma-yusayusa 1.6s ease-in-out infinite alternate both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-yusayusa { animation: none; }
}