本文实例为大家分享了微信小程序实现菜单左右联动的具体代码,供大家参考,具体内容如下
今天记录一个个人写的二级联动示例。
下面是效果图:
功能实现关键是使用控件scroll-view,下面直接上示例代码。
页面对应的js文件:
Page({ data: { select_index:0, scroll_height:0, left: [{ id: 1, title: '选项一' }, { id: 2, title: '选项二' }, { id: 3, title: '选项三' }, { id: 4, title: '选项四' }, { id: 5, title: '选项五' }, { id: 6, title: '选项六' }, { id: 7, title: '选项七' } ], right:[ { id: 1, title: '选项一', content:[ { title:"产品一" }, { title: "产品二" }, { title: "产品三" }, { title: "产品四" }, ] }, { id: 2, title: '选项二', content: [ { title: "产品一" }, { title: "产品二" }, { title: "产品三" }, { title: "产品四" }, ] }, { id: 3, title: '选项三', content: [ { title: "产品一" }, { title: "产品二" }, { title: "产品三" }, { title: "产品四" }, ] }, { id: 4, title: '选项四', content: [ { title: "产品一" }, { title: "产品二" }, { title: "产品三" }, { title: "产品四" }, ] }, { id: 5, title: '选项五', content: [ { title: "产品一" }, { title: "产品二" }, { title: "产品三" }, { title: "产品四" }, ] }, { id: 6, title: '选项六', content: [ { title: "产品一" }, { title: "产品二" }, { title: "产品三" }, { title: "产品四" }, ] }, { id: 7, title: '选项七', content: [ { title: "产品一" }, { title: "产品二" }, { title: "产品三" }, { title: "产品四" }, ] } ] }, // 右边scroll-view滑动事件 scroll:function(e){ var h = e.detail.scrollTop var scroll_height = 0; var select_index; for (var i = 0; i < this.data.right.length; i++) { if (scroll_height >= h){ select_index = i; break; } scroll_height += this.data.right[i].content.length * 64 + 48; } this.setData({ select_index: i, }); }, //左边点击事件 left_tap:function(e){ var scroll_height = 0; for (var i = 0; i < e.target.dataset.index;i++){ scroll_height += this.data.right[i].content.length * 64 + 48; } console.log(scroll_height) this.setData({ scroll_height: scroll_height, select_index: e.target.dataset.index, }); } })
页面对应的wxml文件:
<view class='main'> <view class='left'> <scroll-view scroll-y="true" scroll-with-animation="true"> <block wx:for="{{left}}" wx:for-index="index"> <view class='{{select_index==index?"active":""}}' data-index="{{index}}" bindtap='left_tap'>{{item.title}}</view> </block> </scroll-view> </view> <view class='right'> <scroll-view scroll-y="true" scroll-top="{{scroll_height}}" bindscroll="scroll" scroll-with-animation="true"> <block wx:for="{{right}}"> <view class='block'> <view style='background: lightgrey;'>{{item.title}}</view> <view class='list'> <block wx:for="{{item.content}}"> <view>{{item.title}}</view> </block> </view> </view> </block> </scroll-view> </view> </view>
注:纯个人编写,用于记录
为大家推荐现在关注度比较高的微信小程序教程一篇:《微信小程序开发教程》小编为大家精心整理的,希望喜欢。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍微信小程序左滑动显示菜单功能的实现,包括了微信小程序左滑动显示菜单功能的实现的使用技巧和注意事项,需要的朋友参考一下 效果图如下所示: view css js 源码下载:https://download.csdn.net/download/qq_30641447/10475865
本文向大家介绍微信小程序实现文字从右向左无限滚动,包括了微信小程序实现文字从右向左无限滚动的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了微信小程序实现文字无限滚动的具体代码,供大家参考,具体内容如下 布局页面wxml 样式页面 wxss 小程序 js页面 为大家推荐现在关注度比较高的微信小程序教程一篇:《微信小程序开发教程》小编为大家精心整理的,希望喜欢。 以上就是本文的全部内容,
本文向大家介绍微信小程序实现简单表格,包括了微信小程序实现简单表格的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了微信小程序实现简单表格的具体代码,供大家参考,具体内容如下 效果图: wxml wxss js 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持呐喊教程。
左右菜单例子,类似于Facebook的ViewControllerContainer,在一个UIViewController上面加载另外一个UIViewController。点击主视图的导航条左右两边按钮,就会从左右两边分别滑动出子视图。 [Code4App.com]
本文向大家介绍微信小程序 聊天室简单实现,包括了微信小程序 聊天室简单实现的使用技巧和注意事项,需要的朋友参考一下 微信小程序 聊天室简单实现 utils文件夹下websoctet.js文件 具体页面.js文件内容: 下面方法很好玩,因为使用的服务器 是开源的PHP服务器,所以微信小程序接收到的聊天室中文内容是ASCII编码,所以经过此方法可以转换。 感谢阅读,希望能帮助到大家,谢谢大家对本站的支
本文向大家介绍微信小程序 向左滑动删除功能的实现,包括了微信小程序 向左滑动删除功能的实现的使用技巧和注意事项,需要的朋友参考一下 微信小程序 向左滑动删除功能的实现 实现效果图: 实现代码: 1、wxml touch-item元素绑定了bindtouchstart、bindtouchmove事件 2、wxss flex布局、css3动画 3、js 注释很详细 感谢阅读,希望能帮助到大家,谢谢大家