Gathering detailed insights and metrics for vue-marquee-text-component
Gathering detailed insights and metrics for vue-marquee-text-component
Gathering detailed insights and metrics for vue-marquee-text-component
Gathering detailed insights and metrics for vue-marquee-text-component
npm install vue-marquee-text-component
Typescript
Module System
Node Version
NPM Version
Vue (89.3%)
HTML (5.82%)
JavaScript (4.88%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
476 Stars
52 Commits
44 Forks
9 Watchers
5 Branches
2 Contributors
Updated on Jul 06, 2025
Latest Version
2.0.1
Package Id
vue-marquee-text-component@2.0.1
Unpacked Size
1.68 MB
Size
416.57 kB
File Count
26
NPM Version
7.6.0
Node Version
15.11.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
[CSS GPU Animation] Marquee Text for vuejs
npm install vue-marquee-text-component
or yarn add vue-marquee-text-component
The most common use case is to register the component globally.
1// in your main.js or similar file 2import Vue from 'vue' 3import MarqueeText from 'vue-marquee-text-component' 4 5Vue.component('marquee-text', MarqueeText)
Alternatively you can do this to register the components:
1// HelloWorld.vue 2import MarqueeText from 'vue-marquee-text-component' 3 4export default { 5 name: 'HelloWorld', 6 components: { 7 MarqueeText 8 } 9}
On your page you can now use html like this:
1<!-- simple marquee text --> 2<marquee-text> 3 Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna. 4</marquee-text> 5 6<!-- short text need more duplicates --> 7<marquee-text :repeat="10"> 8 Short text =( 9</marquee-text> 10 11<!-- slow duration --> 12<marquee-text :duration="30"> 13 Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna. 14</marquee-text>
Prop | Type | Default | Description |
---|---|---|---|
duration | Number | 15 | Animation Duration |
repeat | Number | 2 | Number of repeat the Slot (It's important for to short content) |
paused | Boolean | false | The property specifies whether the animation is running or paused |
reverse | Boolean | false | Set animation-direction to reverse |
If you change the content you need reload the component. For this use property :key
see more
1<!-- parse a unique key for reload the component --> 2<marquee-text :key="currentTrack.id"> 3 {{ currentTrack.title }} 4</marquee-text>
1yarn install 2yarn run serve 3yarn run build 4yarn run lint
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/25 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
73 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More