您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在vue中實現左右聯動效果,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
首先betterScroll
npm i better-scroll import BScroll from 'better-scroll' methods: { _initScroll () { this.menuScroll = new BScroll((this.$refs.menu), { click: true 因為betterscroll默認會阻止點擊事件。這里要設置一下 }) this.foodScroll = new BScroll((this.$refs.good), { probeType: 3 用來獲取滾動的距離 }) this.foodScroll.on('scroll', (pos) => { this.scrollY = Math.abs(Math.round(pos.y)) }) },
重點:
created () { this.$ajax.get('/api/data.json').then((res) => { this.goods = res.data.goods this.$nextTick(() => { this._initScroll() this.getGoodsHeight() }) }) },
這里的代碼一定要在獲取數據里面寫nextTick()回調里面寫代碼,因為需要等待數據萬泉加載再去初始化scroll和獲取右邊每一個盒子的高度。
說道高度,高度如何獲取呢?
getGoodsHeight () { let goodEle = this.$refs.good let height = 0 this.listHeight.push(height) let foodList = goodEle.getElementsByClassName('goodsItemHook') for (let i = 0; i < foodList.length; i++) { let item = foodList[i] height += item.clientHeight this.listHeight.push(height) } },
這里是獲取到每一個盒子的clientHeight的高度進行疊加,在push到一個數組里面。
this.foodScroll.on('scroll', (pos) => { this.scrollY = Math.abs(Math.round(pos.y)) })
獲取滾動的值,賦值給scrollY。
然后根據scrollY 和listHeight的高度區間做對比,拿到index:
currentIndex () { for (let i = 0; i < this.listHeight.length; i++) { let height1 = this.listHeight[i] let height2 = this.listHeight[i + 1] if (!height2 || (this.scrollY < height2 && this.scrollY >= height1)) { return i } } }
這時候滾動就能獲取index的值了,然后給左邊的元素去添加active的樣式就方便了。
:class="{'active': currentIndex == index}"
最后一步是如何實現點擊的時候去讓右邊的滾動到指定的位置。
handleGoodsItem (index) { let goodEle = this.$refs.good let foodList = goodEle.getElementsByClassName('goodsItemHook') let el = foodList[index] this.foodScroll.scrollToElement(el, 300) }
關于怎么在vue中實現左右聯動效果就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。