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

simple-marquee

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-marquee

marquee components for react

  • 0.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

simple-marquee

marquee component for react by requestAnimationFrame

demo

start

npm i simple-marquee

OR

yarn add simple-marquee

import

import Marquee from 'simple-marquee';
const {
  MarqueeGroup
} = Marquee;

OR

import Marquee, {
  MarqueeGroup
} from 'simple-marquee';

Marquee text

<Marquee className={styles.marquee_group}
  direction={'horizontal'}
  stop={!(stopMarquee.stop && stopMarquee.index === -1)}>
  2020年结束了,2021年开始了,为新的一年,加油 !!!!⛽️&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</Marquee>

Marquee list

<MarqueeGroup stop={!(stopMarquee.stop && stopMarquee.index === 1)}>
  <Marquee
  style={{
    marginBottom: '12px'
  }}
  speed={1.8}
  indent={10}
  direction={'horizontal'}>
    <List style={{
      backgroundColor: `#${color}`
    }}>枯藤老树昏鸦</List>
    <List style={{
      backgroundColor: `#${color}`
    }}>小桥流水人家</List>
    <List style={{
      backgroundColor: `#${color}`
    }}>古道西风瘦马</List>
  </Marquee>
  <Marquee
  style={{
    marginBottom: '12px'
  }}
  direction={'horizontal-reverse'}
  indent={25}
  speed={1.2}>
    <List style={{
      backgroundColor: `#${color}`
    }}>夕阳西下</List>
    <List style={{
      backgroundColor: `#${color}`
    }}>断肠人在天涯</List>
    <List style={{
      backgroundColor: `#${color}`
    }}>离离原上草</List>
    <List style={{
      backgroundColor: `#${color}`
    }}>一岁一枯荣</List>
  </Marquee>
  <Marquee
  direction={'horizontal'}
  indent={55}
  speed={1.4}>
    <List style={{
      backgroundColor: `#${color}`
    }}>一岁一枯荣</List>
    <List style={{
      backgroundColor: `#${color}`
    }}>野火烧不尽</List>
    <List style={{
      backgroundColor: `#${color}`
    }}>春风吹又生</List>
  </Marquee>
</MarqueeGroup>

MarqueeGroup props

  • stop 【boolean】 Control animation group state

Marquee props

  • speed 【number】 animation speed default 1
  • indent【number】 animation content indent default 0
  • directionanimation direction default horizontal
    • 'horizontal'
    • 'vertical'
    • 'horizontal-reverse'
    • 'vertical-reverse'
  • stop 【boolean】 Control animation state
  • pauseOnHover【boolean】 Control animation state when mouseover default false

Keywords

FAQs

Package last updated on 07 Dec 2023

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