Flop about like a fish
Lively reactionBends 25° each way, wriggling side to side, forever.
- Duration
- 0.3s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Skew rotate skewY
Show CSS
@keyframes onoma-bichibichi {
0% { transform: rotate(8deg) skewY(-25deg); }
100% { transform: rotate(-8deg) skewY(25deg); }
}
.onoma-bichibichi {
animation: onoma-bichibichi 0.3s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-bichibichi { animation: none; }
}