Water laps gently
Water or bath themesFloats up and down 5% with a slight tilt, forever.
- Duration
- 1s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-chapuchapu {
0% { transform: translate(0%, 5%) rotate(-5deg); }
100% { transform: translate(0%, -5%) rotate(5deg); }
}
.onoma-chapuchapu {
animation: onoma-chapuchapu 1s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-chapuchapu { animation: none; }
}