logoTailwind Animations

A curated collection of animations crafted exclusively with Tailwind CSS. Ready to integrate with a simple copy-paste.

Slide In TopBack Animation List

tailwind.config.js

{
"theme": {
"extend": {
"animation": {
"slide-in-top": "slide-in-top 0.6s ease-out"
},
"slide-in-top": {
"0%": {
"transform": "translateY(-20px)"
},
"100%": {
"transform": "translateY(0)"
}
}
}
}
}