Install & Download:
# NPM
$ npm install tank-vue3-seamless-scrollDescription:
TankSeamlessScroll is a Vue 3 scroller component that seamlessly scrolls through a list of items in the y-axis.
How to use it:
1. Import the TankSeamlessScroll component.
import TankSeamlessScroll from "tank-vue3-seamless-scroll"
2. Add items to the scroller.
<tank-seamless-scroll>
<div class="demo">
<div v-for="i in 2" :key="i">Item {{ i }}</div>
</div>
</tank-seamless-scroll>3. Available component props.
stepLength: {
type: Number,
default: 60,
validator: (value) => value >= 0,
},
reverse: {
type: Boolean,
default: false
},
debug: {
type: Boolean,
default: false
},
limitFps: {
type: Number,
default: 32
},
pauseOnHover: {
type: Boolean,
default: true
},Preview:





