vue左右侧联动滚动的实现代码

网友投稿 355 2023-01-30


vue左右侧联动滚动的实现代码

本文介绍了vue左右侧联动滚动的实现代码,分享给大家,具体如下:

实现功能:

点击左侧,右侧滚动到相应位置,

滚动右侧, 左侧滚动到相应位置

布局结构:

开源滚动库:

better-scroll.js

技术要点:

1.是对紧邻的元素生效

如:

初始化在

2.foods-wrapper的高度小于content高度时才会发生滚动

3.点击左侧菜单列表时,只需要计算右侧对应的偏移距离 或是 计算对应的移动到的元素即可

方法一: 计算移动距离, 用scrollTo()方法

for (let i = 0; i < index; i++) {

height += this.$refs.item[i].offsetHeight

}

this.$refs.foodsWrapper.scrollTo(0, -height)

方法二: 计算移动到的元素,用scrollToEleOSQriRmjment()方法

let foodsEle = this.$refs.foodsUl.getElementsByClassName('item')[index]

this.$refs.foodsWrapper.scrollToElement(foodsEle, 400)

4.滚动右侧列表时,会稍复杂一些.

4.1. 因为需要知道滚动的元素在哪个item列表区间, 因此需要计算右侧五组item距离顶部的距离

_heightArr () {

let h = 0

let list = this.$refs.item

list.forEach((item, i) => {

h += list[i].clientHeight

this.itemHeight.push(h)

})

console.log(this.itemHeight) //[0, 481, 850, 2227, 2820, 3189]

}

4.2 时时监听滚动距离

需要在中加以下参数

复制代码 代码如下:

其中 listenScroll probeType参数 在created中定义:

created () {

this.listenScroll = true

this.probeType = 3

}

而@scroll=scroll是在scroll.vue中代理过来的方法:

//scroll.vue

if (this.listenScroll) {

let me = this

this.scroll.on('scroll', (position) => {

me.$emit('scroll', position) //参数position: position:{x:-10, y:24}

})

}

posiiton.y就是需要实时监听的参数,即:

scroll (position) {

this.scrolly = position.y

}

其中 scrolly 需要在data中提前定义:

data () {

return {

scrolly: -1

}

}

然后在watch中监听scrolly变化即可:

watch: {

scrolly (newy) {

if (newy >= 0) this.currentIndex = 0

let itemHeight = this.itemHeight

for (let i = 0; i < itemHeight.length - 1; i++) {

let h1 = itemHeight[i]

let h2 = itemHeight[i + 1]

if (-newy >= h1 && -newy < h2) {

this.currentIndex = i

return

}

}

}

}

代码部分:

//左侧结构

v-for='(item,index) in foodsList'

:key=index

class=item

:class="{active:currentIndex === index}"

@click=selectMenu(index)

>

{{item.name}}

//右侧结构

//.........

//略去右侧详情代码

//js部分

//scroll.vue


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:go接口自动化测试平台(go接口自动化测试平台有哪些)
下一篇:利用python如何处理百万条数据(适用java新手)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~