You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP

react-fast-marquee

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
r

react-fast-marquee

A lightweight React component that utilizes the power of CSS animations to create silky smooth marquees.

1.6.5
latest
99

Supply Chain Security

100

Vulnerability

97

Quality

77

Maintenance

100

License

Version published
Weekly downloads
216K
-4.9%
Maintainers
0
Weekly downloads
 
Created
Issues
59

What is react-fast-marquee?

react-fast-marquee is a React component that allows you to create scrolling text or images, also known as a marquee. It is designed to be highly customizable and performant, making it easy to add scrolling content to your React applications.

What are react-fast-marquee's main functionalities?

Basic Marquee

This feature allows you to create a basic scrolling text marquee. The text will scroll from right to left by default.

<Marquee>Some scrolling text</Marquee>

Custom Speed

You can customize the speed of the scrolling text by setting the 'speed' prop. The higher the number, the faster the text will scroll.

<Marquee speed={50}>Faster scrolling text</Marquee>

Direction Control

This feature allows you to change the direction of the scrolling text. By setting the 'direction' prop to 'right', the text will scroll from left to right.

<Marquee direction='right'>Scrolling text to the right</Marquee>

Pause on Hover

You can make the marquee pause when the user hovers over it by setting the 'pauseOnHover' prop to true.

<Marquee pauseOnHover={true}>Hover to pause scrolling</Marquee>

Gradient Effect

This feature adds a gradient effect to the edges of the marquee, giving it a more polished look. You can enable this by setting the 'gradient' prop to true.

<Marquee gradient={true}>Scrolling text with gradient</Marquee>

Other packages similar to react-fast-marquee

FAQs

Package last updated on 01 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts