@diegosalasmartinez/tailwind-animations
v0.1.2
Published
Light custom Tailwind animations for your project
Readme
Tailwind CSS Animations
A collection of beautifull animations ready to use for your project. Visit the website to get more information.

Installation :book:
- npm
npm install @midudev/tailwind-animations- pnpm
pnpm install @midudev/tailwind-animations- yarn
yarn add @midudev/tailwind-animationsPlugin Implementation
Add plugin to your project configuration
// tailwind.config.mjs
import animations from '@midudev/tailwind-animations'
export default {
// rest of the options
plugins: [
animations
],
}Usage :gear:
Example
<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>