vue.js無縫滾動

chenxuan0000發表於2018-01-25

vue-seamless-scroll

一個簡單的基於vue.js的無縫滾動

vue.js無縫滾動

?線上文件demo ? 小demo ? 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)
        }
      }
複製程式碼

歷史版本

See the GitHub 歷史版本.

注意

如果你想要js無縫滾動(無依賴)你可以切換到這裡seamscroll

License

vue-simple-spinner is open source and released under the MIT License.

TKS

vue-seamless-scroll發現bug或者有什麼不足望指點,感覺不錯點個star吧。

相關文章