1.0.4 • Published 9 months ago

auto-scroll-seamless v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

基于vue3的无缝自动滚动

代码演示

在线demo

import AutoScrollSeamless from 'auto-scroll-seamless';
  // 竖向
  <div style="height:500px">
    <AutoScrollSeamless>
      <div v-for="item in 20" style="height:50px;border:1px solid red"></div>
    </AutoScrollSeamless>
  </div>
  // 横向
  <AutoScrollSeamless :step="0.5" mode="horizontal">
    <div v-for="item in 15" style="height:50px;border:1px solid red;width:100px"></div>
  </AutoScrollSeamless>

API

Props

属性说明类型默认值
width容器宽度(默认为外层宽度)string"100%"
height容器高度(默认为外层高度)Array<string>[]
mode滚动方向vertical | horizontalhorizontal
step每帧移动像素Number1
1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago