Tailwind Animations
A curated collection of animations crafted exclusively with Tailwind CSS. Ready to integrate with a simple copy-paste.
Tailwind Animation: Rotate 360Back Animation List
tailwind.config.js
{
"theme": {
"extend": {
"animation": {
"rotate-360": "rotate-360 1s linear"
},
"rotate-360": {
"0%": {
"transform": "rotate(0deg)"
},
"100%": {
"transform": "rotate(360deg)"
}
}
}
}
}