Installation

If you're using npm, in the command prompt run:

npm install react-fast-marquee --save

If you're using yarn, run:

yarn add react-fast-marquee

Usage

To use the component, first import it into your file:

import Marquee from "react-fast-marquee";

Then wrap the <Marquee> tags around any component or text you'd like to slide.

<Marquee>
  I can be a React component, multiple React components, or just some text.
</Marquee>

A sample file might look like this:

import React from "react";
import MyComponent from "../components/MyComponent";
import Marquee from "react-fast-marquee";

const App = () => (
  <Marquee>
    <MyComponent />
    <MyComponent />
    <MyComponent />
  </Marquee>
);

export default App;

Props

style

The inline style for the container div.

TypeDefaultRequired
CSSProperties{}No
className

The name of the css class to style the container div.

TypeDefaultRequired
string""No
autoFill

Whether to automatically fill blank space in the marquee with copies of the children or not.

TypeDefaultRequired
booleanfalseNo
play

Whether to play or pause the marquee.

TypeDefaultRequired
booleantrueNo
pauseOnHover

Whether to pause the marquee when hovered.

TypeDefaultRequired
booleanfalseNo
pauseOnClick

Whether to pause the marquee when clicked.

TypeDefaultRequired
booleanfalseNo
direction

The direction the marquee is sliding. Warning: Vertical marquees are currently experimental and may be buggy. Please swap the values of the marquee's height and width when setting them

TypeDefaultRequired
"left" | "right" | "up" | "down"leftNo
speed

The speed calculated as pixels/second.

TypeDefaultRequired
number50No
delay

The duration to delay the animation after render, in seconds.

TypeDefaultRequired
number0No
loop

The number of times the marquee should loop, 0 is equivalent to infinite.

TypeDefaultRequired
number0No
gradient

Whether to show the gradient or not.

TypeDefaultRequired
booleanfalseNo
gradientColor

The color of the gradient.

TypeDefaultRequired
stringwhiteNo
gradientWidth

The width of the gradient on either side.

TypeDefaultRequired
number | string200No
onFinish

A callback for when the marquee finishes scrolling and stops. Only calls if loop is non-zero.

TypeDefaultRequired
function{() => void}No
onCycleComplete

A callback for when the marquee finishes a loop. Does not call if maximum loops are reached (use onFinish instead).

TypeDefaultRequired
{() => void}nullNo
children

The children rendered inside the marquee.

TypeDefaultRequired
ReactNodenullYes