中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

怎么在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

城市| 新邵县| 高淳县| 姚安县| 镇宁| 龙州县| 舟山市| 甘肃省| 锦屏县| 庄河市| 儋州市| 轮台县| 寻乌县| 临沧市| 彰化市| 依安县| 嘉鱼县| 贵定县| 手机| 泰兴市| 莱阳市| 贵阳市| 彝良县| 宁陕县| 西和县| 潼南县| 甘德县| 龙门县| 广饶县| 龙泉市| 吉木乃县| 道真| 韩城市| 内黄县| 嘉善县| 江华| 孟州市| 娱乐| 十堰市| 凉山| 乌拉特前旗|