react-ticker icon indicating copy to clipboard operation
react-ticker copied to clipboard

Alternative

Open ololoepepe opened this issue 4 years ago • 2 comments

I have been using react-ticker for more than 6 months, but there are still some issues, eg. rendering when browser tab is in background (this has a workaround, but it is not perfect). So recently I've found https://github.com/mxmzb/react-marquee-slider which looks a better option for some cases. Maybe we can add a link to this to the README as an alternative solution?

ololoepepe avatar Sep 18 '20 13:09 ololoepepe

very complicated to use tho

sshmaxime avatar Oct 29 '20 15:10 sshmaxime

@maximaub maybe that depends on your specific case. I only need this code to make it work:

<Marquee velocity={15}>
  {
    items.map(item => (
      <Item key={item.id} item={item}/>
    ))
  }
</Marquee>

where Item is any component you want.

ololoepepe avatar Oct 31 '20 04:10 ololoepepe