Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-light-marquee

Package Overview
Dependencies
Maintainers
0
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-light-marquee

What goes around comes around! An ode to the HTML marquee element.

  • 0.1.15
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
386
decreased by-21.54%
Maintainers
0
Weekly downloads
 
Created
Source

react-light-marquee

What goes around comes around! An ode to the HTML marquee element.

For most cases the number of elements in the dom is equal to number of children i.e it has no duplication. Duplication is only done when it is absolutely necessary.

Lightweight in bundle size and dom footprint.

Marquee fills the parent container and renders the children by default.

Marquee generates a css class for every instance with specific styles and hence it requires a id value to passed in.

Installation

npm install react-light-marquee

or

yarn install react-light-marquee

How to use

  import React from "react";
  import ListItem from "../ui/ListItem";
  import Marquee from "react-light-marquee";

  const Page = () => (
    <Marquee direction="right">
      <ListItem />
      <ListItem />
      <ListItem />
      <ListItem />
    </Marquee>
  );

  export default Page;

API

Marquee prop list

PropertyTypeDefault valueDetails
directionleft | right | up | downleftdirection of motion
idstringnullunique identifier for a marquee instance on a page
playbooleantrueplays if true else it is paused
speednumber50Pixel per second
pauseOnHoverbooleanfalsetrue pauses the animation on hover
initialSlideIndexnumber0starting slide index
childrenReact.ReactNode[]nullslides to be rendered

Upcoming in next releases

  • More features
  • Automation tests

Status

In beta

Keywords

FAQs

Package last updated on 08 Nov 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc