文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么用uni-app制作小程序实现左右菜单联动效果

2023-07-04 14:42

关注

这篇文章主要介绍“怎么用uni-app制作小程序实现左右菜单联动效果”,在日常操作中,相信很多人在怎么用uni-app制作小程序实现左右菜单联动效果问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么用uni-app制作小程序实现左右菜单联动效果”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

一、示意图

示例:pandas 是基于NumPy 的一种工具,该工具是为了解决数据分析任务而创建的。

二、实现步骤与思路讲解

1.静态页面的布局

页面的布局——在实现具体功能之前,我们就要考虑所要实现的具体功能是什么,将静态页面结构搭建完成,页面结构的构成,决定了后续功能的实现难易程度与方便度,这里我们所要实现的是左右菜单的联动,这就需要用到滑动效果,在uni-app中可利用scroll-view实现这一效果,相关属性如下
属性类型默认值说明
scroll-xBooleanfalse允许横向滚动
scroll-yBooleanfalse允许纵向滚动
scroll-into-viewString 值应为某子元素id(id不能以数字开头)。设置哪个方向可滚动,则在哪个方向滚动到该元素
@scrollEventHandle 滚动时触发,event.detail = {scrollLeft, scrollTop, scrollHeight, scrollWidth, deltaX, deltaY}

2.模拟数据格式

数据结构—— 没有后台接口的同学可以自行模拟数据 ,在开发中,自行模拟数据格式的能力也至关重要。这里所需要的数据结构应为: 页面整体的数据是一个数组,其中左侧菜单应为一个个的对象,其中每一个对象应该有一个子元素 name属性名,它的值应为标题的文,另外还应有两外一个子元素是一个数组,数组中的内容应为子菜单对应的数据。

3.左侧菜单的点击效果

实现思路:

可给左侧菜单一个点击事件,在点击中触发scroll-view 的scroll-into-view属性,所以这里千万不要忘记给子元素添加相应的id属性,在点击相应标题时,即可自动切换

相应代码如下:

页面属性的设置

怎么用uni-app制作小程序实现左右菜单联动效果

左侧菜单的点击事件

// 左侧列表菜单的点击事件changeIndex(index) {this.currentIndex = index;this.rightScrollinto = 'tab' + index;if (this.currentIndex < 6) {this.rightScrollinto = "tab0"} this.leftScrollinto = 'left' + index; },

4.右侧菜单的联动效果

实现思路:

可获得每一个子列表区块的距离顶部的高度,那么这就涉及到要获取具体的节点信息,在uni-app中相关的api可用于获取某元素的节点信息,随之声明一个数组,将这些数据存放在一个数组中,然后判断滑动的高度(这就需要用到scroll-view的@scroll事件,可获取用户滑动的距离)是否大于数组中的数据,若大于,则将该区域的索引传递到左侧菜单中,左侧菜单移动到对应的索引位置即可。

相关代码:

// 获取右侧滑动区域每一个子区域的高度getTop() {const query = uni.createSelectorQuery().in(this);query.selectAll('.demo3').boundingClientRect(data => {// console.log("得到布局位置信息" + JSON.stringify(data));// console.log("节点离页面顶部的距离为" + data.top);if (data) {data.map((item, index) => {let top = index > 0 ? this.topList[index - 1] : 0;top += item.height;this.topList.push(top);})}console.log(this.topList);}).exec();},//右侧滑动区域的滑动事件rightscroll(event) {// console.log(event.target.scrollTop)let scrollTop = event.target.scrollToplet result = this.topList.findIndex((item,index)=>{   return  scrollTop<=item})this.currentIndex = result;// this.changeIndex();}},

三、具体实现代码

1.页面结构

<!-- 左侧列表栏区域 s--><view class="uni-padding-wrap uni-common-mt"><view class="d-flex"><scroll-view scroll-with-animation :scroll-top="scrollTop" scroll-y="true" class="scroll-Y left-scroll":scroll-into-view="rightScrollinto"><view @click="changeIndex(index)"  :id="'tab'+index" v-for="(item,index) in listName" :key="item.id":class="currentIndex == index?'active-class':''">{{item.name}}</view></scroll-view><scroll-view @scroll="rightscroll" scroll-with-animation ::scroll-top="scrollTop" scroll-y="true" class="scroll-Y right-scroll":scroll-into-view="leftScrollinto"><view   :id="'left'+bindex" v-for="(bitem,bindex) in listName" :key="bindex" class="d-flex flex-wrap demo3"><view  v-for="(childItem, Aindex) in bitem.app_category_items" :key="childItem.id"class=" demo2 scroll-view-item uni-bg-red  demo2"><view class="img"><image :src="childItem.cover" mode="scaleToFill"></image></view><view class="text"><text>{{childItem.name}}</text></view></view></view> </scroll-view></view></view>

2.相关样式

.left-scroll {width: 30%;background: #f4f4f4;text-align: center;}.left-scroll view {height: 120rpx;line-height: 120rpx;} .right-scroll {width: 70%;} .right-scroll .demo2 {width: 33%;text-align:center;margin-top:0;}image {width: 120rpx;height: 120rpx;}.active-class {color: orange;background: white;border-top-right-radius: 10rpx;border-bottom-right-radius: 10rpx;}

3.业务逻辑部分

 <script>import {getCate} from '../../api/cate.js';export default {data() {return {currentIndex: 0,listName: [],scrollH: 0,// 表明左右两侧滑动的标志scroll-into-viewrightScrollinto: '',leftScrollinto: '',// 用一个数组承载每一个子区块的距离顶部的高度topList: [], }},mounted() {this.getCate();// 使用定时器获取区块节点信息setTimeout(() => {this.getTop();}, 500)},onLoad() {// 异步获取系统信息,包括屏幕高度等uni.getSystemInfo({success: (res) => {console.log(res);// #ifdef MPthis.scrollH = res.windowHeight - uni.upx2px(88)// #endif}}); },methods: {// 调用获取分类页数据的方法getCate() {getCate().then((response) => {console.log(response)this.listName = response.data})},// 左侧列表菜单的点击事件changeIndex(index) {this.currentIndex = index;this.rightScrollinto = 'tab' + index;if (this.currentIndex < 6) {this.rightScrollinto = "tab0"} this.leftScrollinto = 'left' + index; },// 获取右侧滑动区域每一个子区域的高度getTop() {const query = uni.createSelectorQuery().in(this);query.selectAll('.demo3').boundingClientRect(data => {// console.log("得到布局位置信息" + JSON.stringify(data));// console.log("节点离页面顶部的距离为" + data.top);if (data) {data.map((item, index) => {let top = index > 0 ? this.topList[index - 1] : 0;top += item.height;this.topList.push(top);})}console.log(this.topList);}).exec();},//右侧滑动区域的滑动事件rightscroll(event) {// console.log(event.target.scrollTop)let scrollTop = event.target.scrollToplet result = this.topList.findIndex((item,index)=>{   return  scrollTop<=item})this.currentIndex = result;// this.changeIndex();}}, }</script>

到此,关于“怎么用uni-app制作小程序实现左右菜单联动效果”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯