Bob on the water
IdleFloats up and down 10% with a slight tilt, forever.
- Duration
- 2s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-pukapuka {
0% { transform: translate(0%, 10%) rotate(-4deg); }
100% { transform: translate(0%, -10%) rotate(4deg); }
}
.onoma-pukapuka {
animation: onoma-pukapuka 2s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-pukapuka { animation: none; }
}