Slosh through water
Cleanup in progressRocks 12° each way on its bottom edge, forever.
- Duration
- 1s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-zabuzabu {
0% { transform: rotate(-12deg); }
100% { transform: rotate(12deg); }
}
.onoma-zabuzabu {
animation: onoma-zabuzabu 1s ease-in-out infinite alternate both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-zabuzabu { animation: none; }
}