vue列表滚动(1)
1.安装
下载
npm install vue-seamless-scroll --save
引入
import vueSeamlessScroll from 'vue-seamless-scroll
components: { vueSeamlessScroll }
2.vue
<vue-seamless-scroll :data="notice" class="seamless-warp" :class-option="classOption">
<div v-for="(item, index) in notice" :key="index">
<span>{{item.title}}</span>
<span>{{item.time}}}</span>
</div>
</vue-seamless-scroll>
3.computed 方法
computed: { classOption() { return { step: 0.2, // 数值越大速度滚动越快 // limitMoveNum: 2, // 开始无缝滚动的数据量 this.dataList.length hoverStop: true, // 是否开启鼠标悬停stop direction: 1, // 0向下 1向上 2向左 3向右 openWatch: true, // 开启数据实时监控刷新dom singleHeight: 0, // 单步运动停止的高度(默认值0是无缝不停止的滚动) direction => 0/1 singleWidth: 0, // 单步运动停止的宽度(默认值0是无缝不停止的滚动) direction => 2/3 waitTime: 1000, // 单步运动停止的时间(默认值1000ms) } }, },

浙公网安备 33010602011771号