Type alias animate_bounce

animate_bounce: "animate-bounce"

Css

animation: bounce 1s infinite;@keyframes bounce {  0%, 100% {    transform: translateY(-25%);    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);  }  50% {    transform: translateY(0);    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);  }}

Description

You can refer to the official tailwind documentation

Description

You can refer to the typedoc

Since

Tailwind v3.2.7

Generated using TypeDoc