91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

巴楚县| 城固县| 东乡族自治县| 醴陵市| 布拖县| 扶风县| 乌兰县| 曲靖市| 上虞市| 云林县| 醴陵市| 泾阳县| 安达市| 潮安县| 镇坪县| 河西区| 安化县| 乌鲁木齐县| 永丰县| 西昌市| 巴塘县| 岚皋县| 札达县| 玛曲县| 华宁县| 扶风县| 西畴县| 广南县| 阳信县| 灵璧县| 茌平县| 南宫市| 泽库县| 桓台县| 垣曲县| 冀州市| 阿图什市| 定西市| 铜陵市| 曲麻莱县| 津市市|