Winden 2.0

Tailwind Animations

import animations from 'https://esm.sh/@midudev/tailwind-animations@0.0.7';

export default {
	
	plugins: [
    	animations
  	],
	corePlugins: {
		preflight: true
	}
}

Tip

Here are some examples on how to use it

<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>