Socket
Socket
Sign inDemoInstall

@fuzzco/vue-marquee

Package Overview
Dependencies
12
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @fuzzco/vue-marquee

Reliable, accessible, bare-bones marquee in Vue.


Version published
Weekly downloads
1
Maintainers
2
Created
Weekly downloads
 

Readme

Source

VueMarquee gives you a reliable, accessible, bare-bones marquee in Vue. You provide the content and the styling, this component provides the rest. Demo

Usage

npm i @fuzzco/vue-marquee

Register component in Vue, then:

<template>
    <main>
        <!-- standard options -->
        <vue-marquee>
            <p>
                <code>VueMarquee</code> gives you a reliable, accessible,
                bare-bones marquee. You provide the content and the styling,
                this component provides the rest.
            </p>
        </vue-marquee>

        <!-- custom props -->
        <vue-marquee :groups="10" :speed="150">
            <p>
                Your content will be repeated 10 times here and scroll at
                150px/second.
            </p>
        </vue-marquee>
    </main>
</template>

Options

PropTypeDefaultNotes
groupsNumber5How many times the text will be repeated. All repetitions after the first have aria-hidden set to true. Add more repetitions if your content isn't reaching the edge of the screen.
speedNumber75Target scroll speed in pixels per second.

FAQs

Last updated on 09 Sep 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc