Bounce with Fade-In
tailwind.config.ts
{
"animation": {
"bounce-fade-in": "bounce-fade-in 0.6s ease-out"
},
"bounce-fade-in": {
"0%": {
"transform": "scale(0.5)",
"opacity": "0"
},
"100%": {
"transform": "scale(1)",
"opacity": "1"
}
}
}