0.0.4 • Published 2 years ago

react-hot-marquee v0.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

react-hot-marquee

The React marquee component that can smoothly loops the content.

Features

  • 🎈 Easy to use.
  • 🧩 Headless Marquee components, you can assign your custom style.
  • ▶️ Auto play when content overflow.

Documentation

Explore the full Documentation

Demo

Explore the demo.

Installation

$ npm install --save react-hot-marquee

Usage

Simply usage

import ReactHotMarquee from "react-hot-marquee";

function Demo() {
  return (
    <>
      <ReactHotMarquee>
        Yesterday, All my trouble seemed so far away.
      </ReactHotMarquee>
    </>
  );
}