Skip to content

Latest commit

 

History

History
296 lines (227 loc) · 5.7 KB

README.md

File metadata and controls

296 lines (227 loc) · 5.7 KB

vue3-seamless-scroll

全新升级无缝滚动组件,改为虚拟列表的方式渲染,支持大数据滚动,可以分页请求无限数据滚动更多使用方式看例子

老版本文档

目前组件支持上下左右无缝滚动,单步滚动,并且支持复杂图标的无缝滚动,目前组件支持平台与Vue3.0支持平台一致。

安装

  • npm

    npm install vue3-seamless-scroll --save
  • Yarn

    yarn add vue3-seamless-scroll
  • browser

    <script src="https://unpkg.com/browse/[email protected]/dist/vue3-seamless-scroll.min.js"></script>

组件配置

  • list

    无缝滚动列表数据。

    type: Array
    required: true
  • visibleCount

    满足多少条数据时开启滚动,当每一条数据高度或者宽度一致时组件内会自动计算,否则最好手动指定

    type: Number
    required: false
  • v-model

    通过v-model控制动画滚动与停止,默认开始滚动

    type: Boolean,
    default: true,
    required: false
  • direction

    控制滚动方向,可选值updownleftright

    type: String,
    default: "up",
    required: false
  • hover

    是否开启鼠标悬停

    type: Boolean,
    default: false,
    required: false
  • step

    步进速度

    type: Number,
    default: 0.5,
    required: false
  • singleWaitTime

    单步停止等待时间(默认值 1000ms)

    type: Number,
    default: 1000,
    required: false
  • delay

    动画延时时间

    type: Number,
    default: 0,
    required: false
  • ease

    动画效果,可以传入贝塞尔曲线数值

    type: String,
    default: "cubic-bezier(0.03, 0.76, 1, 0.16)",
    required: false
  • wheel

    在开启鼠标悬停的情况下是否开启滚轮滚动,默认不开启

    type: boolean,
    default: false,
    required: false
  • singleLine

    启用单行横向滚动

    type: boolean,
    default: false,
    required: false

组件方法

  • add(index, values, cb)

    添加数据、可以添加多个

    index: 在原数组什么位置开始添加数据,
    values: 要添加的数据,为一个数组,
    cb: 添加完后的回调,参数为添加后的完整数组
  • remove(index, num, cb)

    删除数据

    index: 从原数组什么位置开始移除数据,
    num: 移除多少条数据,
    cb: 移除完后的回调,参数为移除后的完整数组
  • update(index, value, cb)

    更新数据

    index: 更新原数组什么位置的元素,
    value: 更新后的元素,
    cb: 更新完后的回调,参数为更新后的完整数组
  • reset()

    重置组件状态,如外层盒子大小改变时需调用该方法重置

事件

  • offset(bufferSize, targetList)

    当缓存数据更新时触发该事件,可以用以做分页更新滚动数据,可以看无限数据滚动例子

    bufferSize: 显示缓存数量,
    targetList: 原数组
  • count(count)

    当滚动完一个周期时触发该事件

    count: 滚动完一个周期的次数

注意项

需要滚动的列表所在容器必须设置样式 overflow: hidden;

使用

注册组件

  • 全局组件注册 install
  // **main.js**
  import { createApp } from 'vue';
  import App from './App.vue';
  import vue3SeamlessScroll from "vue3-seamless-scroll";
  const app = createApp(App);
  app.use(vue3SeamlessScroll);
  app.mount('#app');
  • 单个.vue文件局部注册
<script>
  import { defineComponent } from "vue";
  import { Vue3SeamlessScroll, VerticalScroll, HorizontalScroll } from "vue3-seamless-scroll";
   export default defineComponent({
      components: {
        Vue3SeamlessScroll, // 横竖向
        VerticalScroll, // 竖向
        HorizontalScroll // 横向
      }
   })
</script>

使用组件

<template>
  <div class="vertical-scoll">
    <vertical-scroll :list="list">
      <template v-slot="{ data }">
        <span style="width: 100%; display: block; line-height: 30px;">
          <div>{{ data.name }}</div>
        </span>
      </template>
    </vertical-scroll>
  </div>
  <div class="horizonta-scoll">
    <horizontal-scroll :list="list">
      <template v-slot="{ data }">
        <div class="vertical-text">
          {{ data.name }}
        </div>
      </template>
    </horizontal-scroll>
  </div>
  <div class="vertical-scoll">
    <vue3-seamless-scroll :list="list">
      <template v-slot="{ data }">
        <span style="width: 100%; display: block; line-height: 30px;">
          <div>{{ data.name }}</div>
        </span>
      </template>
    </vue3-seamless-scroll>
  </div>
</template>
<script>
import { defineComponent, ref } from "vue";
import { Vue3SeamlessScroll,VerticalScroll,HorizontalScroll } from "vue3-seamless-scroll";

const listData = Array.from({ length: 10000 }, (_, i) => ({
  id: Date.now() + i + 1,
  name: `Vue3.0无缝滚动展示数据第${i + 1}条`,
}));

export default defineComponent({
  name: "App",
  components: {
    Vue3SeamlessScroll,
    VerticalScroll,
    HorizontalScroll
  },
  setup() {
    const list = ref(listData);
    return {
      list,
    }
  },
});
</script>

<style>
.vertical-scoll {
  overflow: hidden;
  height: 300px;
}

.horizonta-scoll {
  overflow: hidden;
  height: 300px;
}


.vertical-text {
  height: 300px;
  writing-mode: vertical-lr;
  text-orientation: upright;
  line-height: 30px;
  display: inline-block;
}
</style>