1、首先下载插件
cnpm install vue-seamless-scroll --save
2、在需要的页面引入、使用配置
import vueSeamlessScroll from 'vue-seamless-scroll'
//注册组件
components: {
vueSeamlessScroll
},
3、代码如下:
<template>
<vue-seamless-scroll
:data="arr"
class="seamless-warp"
:class-option="classOptiona"
>
<table cellspacing="0" cellpadding="0">
<tr
v-for="(item, index) in arr"
:key="index"
style="border: 1px dashed #ffffff;width:100%"
>
<td class="tab_title">{{ item.number }}</td>
<td class="tab_title">{{ item.name }}</td>
<td class="tab_title">{{ item.kind }}</td>
<td class="tab_title">{{ item.value }}</td>
<td class="tab_title">{{ item.result }}</td>
<td class="" style="width:30%">{{ item.time }}</td>
</tr>
</table>
</vue-seamless-scroll>
</template>
export default {
data(){
return{
arr:[数据.........]
},
computed(){
classOption() {
return {
step: 0.4, // 数值越大速度滚动越快
limitMoveNum: 1, // 开始无缝滚动的数据量 this.dataList.length
hoverStop: true, // 是否开启鼠标悬停stop
direction: 1, // 0向下 1向上 2向左 3向右
openWatch: true, // 开启数据实时监控刷新dom
singleHeight: 43, // 单步运动停止的高度(默认值0是无缝不停止的滚动) direction => 0/1
singleWidth: 0, // 单步运动停止的宽度(默认值0是无缝不停止的滚动) direction => 2/3
waitTime: 2000 // 单步运动停止的时间(默认值1000ms)
};
},
}
}
<style>
.seamless-warp {
overflow: hidden;
}
</style>