Get your animations easily done with only Tailwind CSS classes.
Visit the website to get more information.
Install the package with your favorite package manager:
- npm
npm install @midudev/tailwind-animations
- pnpm
pnpm install @midudev/tailwind-animations
- yarn
yarn add @midudev/tailwind-animations
Use the plugin in your Tailwind CSS project:
// tailwind.config.mjs
import animations from '@midudev/tailwind-animations'
export default {
// rest of the options
plugins: [
animations
],
}
Here are some simple examples of how to use this plugin and its animations:
<div class="animate-fade-in">
Fade in box
</div>
<div class="animate-slide-in-bottom animate-delay-300 animate-duration-slow">
Slow animation after 300ms to slide in from bottom
</div>