Gradient animated text with Tailwind CSS
Byakkuya (ahmed zbaa)
Posted on July 20, 2024
I've was working on a project recently and I wanted to add some cool effect on my landing page's hero section's text.
I've seen this effect on lots of sites and i want something simple because i use Tailwind css
so i find it somewhere online
and i wanted to share it with you
first you gonna add this to tailwind.config.js
modules.export = {
theme: {
extend: {
animation: {
text: 'text 5s ease infinite',
},
keyframes: {
text: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center',
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center',
},
},
},
}
}
}
then add these classes wherever you want
<h1 class="animate-text bg-gradient-to-r from-teal-500 via-purple-500 to-orange-500 bg-clip-text text-transparent text-5xl font-black">
Gradient animated text with Tailwind CSS
</h1>
💖 💪 🙅 🚩
Byakkuya (ahmed zbaa)
Posted on July 20, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
tailwindcss Learn how to create an animated expanding search bar with Tailwind CSS
November 25, 2024