基于vue.js无缝滚动效果
时间:2021-06-17 09:16:30|栏目:vue|点击: 次
一个简单的基于vue.js的无缝滚动
:feet:在线文档demo :ear_of_rice:小demo :blue_book:English Document
安装
NPM
npm install vue-seamless-scroll --save
使用
ES6
详情的demo页面 example-src/App.vue
// **main.js** import Vue from 'vue' import scroll from 'vue-seamless-scroll' Vue.use(scroll) <template> <vue-seamless-scroll></vue-seamless-scroll> </template> // 或者你可以自己设置全局注册的组件名 默认注册的组件名是 vue-seamless-scroll Vue.use(scroll,{componentName: 'scroll-seamless'}) <template> <scroll-seamless></scroll-seamless> </template>
普通的使用方法 (script标签引入)
Example:
详情的demo页面 test/test.html
<html> <head> ... </head> <body> <div id="app"> <vue-seamless-scroll></vue-seamless-scroll> </div> <script src="vue.js"></script> <script src="vue-seamless-scroll"></script> <script> new Vue({ el: '#app' }) </script> </body> </html>
配置项默认值
defaultOption () { return { step: 1, //数值越大速度滚动越快 limitMoveNum: 5, //开始无缝滚动的数据量 //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) } }
总结
上一篇:vue中for循环更改数据的实例代码(数据变化但页面数据未变)
栏 目:vue
本文标题:基于vue.js无缝滚动效果
本文地址:http://www.codeinn.net/misctech/143174.html