Q: hi tried to add some text with an animated color gradient do not know about code found some code snippets ...
for animated gradient text
which work in the tailwind play area
copied the code for the text which shows ok in lindo
but there is a config component for the animation
so where do I copy paste that ?
thanks
here is text part which shows the text ok
<div class="text-9xl font-semibold
bg-gradient-to-r bg-clip-text text-transparent
from-indigo-500 via-purple-500 to-indigo-500
animate-text
">
SampleText
</div>
and here is animation part, so where do I put that ?
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'
}
},
}
},
Baback_LindoAi
May 15, 2024A: Hi!
Awesome! It's great to see you want to add Tailwind CSS code to the platform as we encourage users to do that. We are working on a feature that will convert your TailwindCSS to Lindo Ai native blocks, and it will be available soon!
Let's get back to your questions. To assist you in this specific case, please contact chat support or send me an email (baback@lindoai.com) with your registered email address in Lindo, and a link to the Tailwind CSS playground where the code works correctly, and I will look into it.
Thank you for using Lindo to build your website :)
Verified purchaser
https://play.tailwindcss.com/5nzLKbNPD9
@bhagsy
Thank you for sharing! This is a beautiful animation, by the way.
As you can see, this code has a "conf" for the animation that needs to be compiled separately. The TailwindCSS codes with configuration are a bit more complicated, so we have included them in our roadmap. They will be available at the end of Q2 or Q3 this year.