1.0.4 • Published 8 days ago

react-final-marquee v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
8 days ago

React final marquee

Easy way to use marquee for react

size dm visitor badge

Installation

npm install react-final-marquee
# or
yarn add react-final-marquee

Demo

See Here

Usage

// App.js
import ReactFinalMarquee from "react-final-marquee";

const VertialMarquee = () => {
  return (
    <div className="App">
      <ReactFinalMarquee
        className="marquee-customer-class"
        direction="leftToRight"
        speed="30"
        space="20px"
        repeat="5"
      >
        Lorem Ipsum is simply dummy text of the printing and typesetting
        industry.
      </ReactFinalMarquee>
    </div>
  );
};

const HorizontalMqrquee = () => {
  return (
    <div className="App">
      <ReactFinalMarquee
        className="marquee-customer-class"
        direction="topToBottom"
        speed="30"
        space="20px"
        repeat="5"
      >
        Lorem Ipsum is simply dummy text of the printing and typesetting
        industry.
      </ReactFinalMarquee>
    </div>
  );
};

Props

PropTypeDefaultDescription
heightNumber / String30pxThe height of the container div
styleCSSProperties{}Inline style for the container div
classNameString""Class name to style the container div
pausedBooleanfalseThe property specifies whether the animation is running or paused
pauseOnHoverBooleantrueWhether to pause the marquee when hovered
directionleftToRight / rightToLeft / topToBottom / bottomToToprightToLeftThe direction the marquee is sliding
speedNumber / String20Speed calculated as pixels/second
spaceNumber / String0Each loop item sapces
repeatNumber / String2Number of repeat text
textColorString / nullnullText color
bgColorString /nullnullContainer Background color
positionstart /center / endstartMarquee position
1.0.4

8 days ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago

0.0.0

1 year ago