亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在vue中實現左右聯動效果

發布時間:2021-05-31 18:11:30 來源:億速云 閱讀:341 作者:Leah 欄目:web開發

這篇文章給大家介紹怎么在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中實現左右聯動效果就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

景泰县| 凭祥市| 华池县| 长治县| 连云港市| 沿河| 龙陵县| 赣榆县| 岳普湖县| 安陆市| 前郭尔| 富顺县| 通河县| 扶绥县| 宜川县| 嘉善县| 黔江区| 呼伦贝尔市| 阳朔县| 德昌县| 凤庆县| 汉源县| 鲁甸县| 普定县| 儋州市| 偃师市| 辉县市| 乌拉特后旗| 繁峙县| 叶城县| 涪陵区| 饶平县| 玉环县| 额敏县| 驻马店市| 新干县| 满城县| 西乡县| 天台县| 宜君县| 寻乌县|