Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
vue-marquee-list
Advanced tools
a marquee component for vue project
npm install vue-marquee-list
import ListMarquee from 'vue-marquee-list'
<template>
<div id="app">
<div class="marquee-container">
<list-marquee :interval="1" :rowHeight="30" :rowCount="5">
<div class="marquee-item" v-for="(item,i) in list" :key="i">
<div>{{i}}______{{item}}</div>
</div>
</list-marquee>
</div>
</div>
</template>
<script>
import ListMarquee from 'vue-marquee-list'
export default {
name: 'app',
components: {
'list-marquee':ListMarquee
},
data() {
return {
list: Array.from({length:10}).map(()=> '恭喜玩家一叶知秋获得五杀')
}
},
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
.marquee-container{
height:150px;
overflow: hidden;
}
.marquee-item{
height:30px;
line-height: 30px;
}
</style>
FAQs
a marquee component for vue project
We found that vue-marquee-list demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.