justin-chu / react-fast-marquee

A lightweight React component that harnesses the power of CSS animations to create silky smooth marquees.
https://react-fast-marquee.com
MIT License
1.16k stars 95 forks source link

Gradientcolor only working with white? #104

Open prexjhonverdeflor opened 3 months ago

prexjhonverdeflor commented 3 months ago

using black or any color dont show pls help

4cyc commented 2 months ago

@prexjhonverdeflor

Are you sure you're passing the gradient color correctly? Here's an example with yellow gradient that works fine for me:

<Marquee
  gradient={true}
  gradientColor='#ccff00'
>
  {/* your child marquee component goes here */}
</Marquee>