您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)vue.js怎么實現(xiàn)列表滾動循環(huán)的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
vue.js實現(xiàn)列表滾動循環(huán)的方法:1、安裝vue-seamless-scroll;2、在文件中引入vue-seamless-scroll,并配置組件;3、使用vue-seamless-scroll即可。
本文操作環(huán)境:windows10系統(tǒng)、vue.js 2.9、thinkpad t480電腦。
首先我們要安裝vue-seamless-scroll
點擊下方的鏈接可以查看演示文檔。
實例文檔鏈接
cnpm install vue-seamless-scroll --save
接著在文件中引入,并配置組件配置
import vueSeamlessScroll from 'vue-seamless-scroll'
最后使用它就好了,如下:
<template> <vue-seamless-scroll :data="CardPartsStatisticsList" class="seamless-warp" :class-option="classOption"> <ul> <li class="DataList_top" v-for="(item,index) in CardPartsStatisticsList" :key="index" v-if="index < 5"> <div class="DataList_left">{{index+1}}</div> <div class="DataList_left">{{item.itemname}}</div> <div class="DataList_left">{{item.number}}</div> </li> </ul> </vue-seamless-scroll> </template> <script> import vueSeamlessScroll from 'vue-seamless-scroll' export default { data() {}, components: { //組件 vueSeamlessScroll }, computed: { classOption () { return { step: 0.2, // 數(shù)值越大速度滾動越快 limitMoveNum: 2, // 開始無縫滾動的數(shù)據(jù)量 this.dataList.length hoverStop: true, // 是否開啟鼠標(biāo)懸停stop direction: 1, // 0向下 1向上 2向左 3向右 openWatch: true, // 開啟數(shù)據(jù)實時監(jiān)控刷新dom singleHeight: 0, // 單步運動停止的高度(默認(rèn)值0是無縫不停止的滾動) direction => 0/1 singleWidth: 0, // 單步運動停止的寬度(默認(rèn)值0是無縫不停止的滾動) direction => 2/3 waitTime: 1000 // 單步運動停止的時間(默認(rèn)值1000ms) } } }, } </script> <style> .seamless-warp{ width: 100%; height: calc(100% - 16px); overflow: hidden; } </style>
感謝各位的閱讀!關(guān)于“vue.js怎么實現(xiàn)列表滾動循環(huán)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。