react-ticker
react-ticker copied to clipboard
Alternative
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?
very complicated to use tho
@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.