mpvue实现左侧导航与右侧内容的联动
网络编程 2021-07-04 15:01www.168986.cn编程入门
这篇文章主要为大家详细介绍了mpvue实现左侧导航与右侧内容的联动,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了mpvue左侧导航与右侧内容联动的具体代码,供大家参考,具体内容如下
效果图如下
(1)左侧导航联动右侧内容
实现点击左侧导航,右侧内容滑到对应的位置,并且导航上有current当前样式。
mpvue用的还是微信小程序提供的组件scroll-view,它里面有一个属性scroll-into-view,值为某子元素的id,滚动到该元素。
template:
<scroll-view class="menu-wrapper" scroll-y> <ul> <li class="menu-item" v-for="(item,index) in goods" :class="index===currentIndex ? 'current' : ''" :key="index" @tap="selectMenu(index)"> {{item.name}} </li> </ul> </scroll-view> <scroll-view scroll-y :scroll-into-view="contentId" scroll-with-animation="true" class="foods-wrapper"> <ul> <li v-for="(item,i) in goods" :id="'con_'+i" class="food-list food-list-hook" :key="i"> </li> </ul> <scroll-view>
js:
data() { return { goods: [], contentId: '', // 每个food-list的id,scroll-into-view滚动到对应的id currentIndex: 0 } }, methods: { selectMenu(index) { this.contentId = `con_${index}` this.currentIndex = index } }
(2)在左侧导航联动右侧内容的基础上增加右侧内容联动左侧导航
实现滑动右侧内容区域,给左侧对应导航增加current样式,并且当导航高度过长,会联动其滚动
补充contentHeight是右侧内容scroll-view的高度,也是左侧导航scroll-view的高度,navItemHeight是导航ul下每一个item的高度,当导航下ul的高度超过scroll-view的高度,并且this.currentIndex this.navItemHeight > this.contentHeight,导航才向上滚动。
tempate:
<scroll-view class="menu-wrapper" :scroll-into-view="navId" scroll-with-animation="true" scroll-y> <ul class="menu-ul"> <li class="menu-item" v-for="(item,index) in goods" :id="'nav_'+index" :class="index===currentIndex ? 'current' : ''" :key="index" @tap="selectMenu(index)"> {{item.name}} </li> </ul> </scroll-view> <scroll-view scroll-y @scroll="onScroll" :scroll-into-view="contentId" scroll-with-animation="true" class="foods-wrapper"> <ul> <li v-for="(item,i) in goods" :id="'con_'+i" class="food-list food-list-hook" :key="i"> </li> </ul> </scroll-view>
js:
export default{ data() { return { goods: [], contentId: '', // 每个food-list的id,scroll-into-view滚动到对应的id navId: '', // 导航模块对应的id,用来联动内容区域 currentIndex: 0, navulHeight: 0, // 导航里ul高度 navItemHeight: 0, // 每个导航高度 listHeight: [], // foods内部块的高度 contentHeight: [], // 内容区域scroll-view高度 } }, watch: { currentIndex() { console.log(this.currentIndex) if (this.contentHeight < this.navulHeight) { let h = this.currentIndex this.navItemHeight if (h > this.contentHeight) { // 导航滑动 this.navId = `nav_${this.currentIndex}` } else { this.navId = 'nav_0' } } } }, methods: { selectMenu(index) { this.contentId = `con_${index}` this.navId = `nav_${index}` this.currentIndex = index }, onScroll(e) { this.contentId = '' let scrollTop = e.target.scrollTop // console.log(scrollTop) let length = this.listHeight.length if (scrollTop >= this.listHeight[length - 1] - this.contentHeight) { return } else if (scrollTop > 0 && scrollTop < this.listHeight[0]) { this.currentIndex = 0 } for (let i = 0; i < length; i++) { if (scrollTop >= this.listHeight[i - 1] && scrollTop < this.listHeight[i]) { this.currentIndex = i } } // console.log(this.currentIndex) }, getFoodHeight() { var query = wx.createSelectorQuery() let h = 0 query.selectAll('.food-list-hook').boundingClientRect((rects) => { // console.log(rects) rects.forEach((rect) => { h += rect.height this.listHeight.push(h) }) // console.log(this.listHeight) }) query.select('.foods-wrapper').boundingClientRect((rect) => { this.contentHeight = rect.height }) query.select('.menu-ul').boundingClientRect((rect) => { this.navulHeight = rect.height }) query.select('.menu-item').boundingClientRect((rect) => { this.navItemHeight = rect.height }).exec() } }, watch: { goods() { // 获取模块高度,即food-list setTimeout(() => { this.getFoodHeight() }, 60) } } }
更多教程点击《》,欢迎大家学习阅读。
关于vue.js组件的教程,请大家点击专题进行学习。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程