https://github.com/ryanhefner/react-marquease
🐛 HTML <marquee>s, the React way (with some handy control features).
https://github.com/ryanhefner/react-marquease
marquee react react-component reactjs
Last synced: 3 months ago
JSON representation
🐛 HTML <marquee>s, the React way (with some handy control features).
- Host: GitHub
- URL: https://github.com/ryanhefner/react-marquease
- Owner: ryanhefner
- License: mit
- Created: 2022-11-29T15:54:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T04:51:32.000Z (over 1 year ago)
- Last Synced: 2025-10-20T12:29:58.786Z (7 months ago)
- Topics: marquee, react, react-component, reactjs
- Language: JavaScript
- Homepage: https://pkgstats.com/pkg:react-marquease
- Size: 375 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# 🐛 react-marquease
[](https://www.pkgstats.com/pkg:react-marquease)
[](LICENSE)
[](https://www.pkgstats.com/pkg:react-marquease)
[](https://coveralls.io/github/ryanhefner/react-marquease)
[](https://codecov.io/gh/ryanhefner/react-marquease)
[](https://circleci.com/gh/ryanhefner/react-marquease)


HTML ``s, the React way (with some handy control features).
## Install
Via [npm](https://npmjs.com/package/react-marquease)
```sh
npm install -S react-marquease
```
Via [Yarn](https://yarn.pm/react-marquease)
```sh
yarn add react-marquease
```
## How to use
```js
import Marquee from 'react-marquease'
const ExampleComponent = () => (
Scrolly text, moving through, my browser window, moving smooth.
)
```
### Props
- `reverse` - Reverse the direction of the `Marquee`. (Scroll left to right)
- `pause` - Pause `Marquee` scrolling
- `speed` - Modifies the `duration` of the web animation as `Marquee` scrolls through the viewport. (Default: `1`)
- `ref` - References the outermost `div` of the component.
- `...rest` - Applied to outermost `div` of the component.
## License
[MIT](LICENSE) © [RyanHefner](https://www.ryanhefner.com)