The React marquee component that can smoothly loops the content.
- 🎈 Easy to use.
- 🧩 Headless Marquee components, you can assign your custom style.
▶️ Auto play when contentoverflow
.
Explore the full Documentation
Explore the demo.
$ npm install --save react-hot-marquee
import ReactHotMarquee from "react-hot-marquee";
function Demo() {
return (
<>
<ReactHotMarquee>
Yesterday, All my trouble seemed so far away.
</ReactHotMarquee>
</>
);
}