今天说一下小程序经常遇到的联动案例,项目要求点左边右边的内容要对应的跳转,所以说当我们点击左侧边栏的时候要动态的把id传给右边的内容,使其对应,接下来就看看是怎么实现的吧。下节我会说一下右到左的联动,喜欢的小伙伴要关注哦。

左右联动.gif

实现该功能的思路:通过点击左侧滑栏的某一项,获取到该元素携带的 id ,然后动态传给右侧滑栏的 scroll-into-view ,从而实现右侧滑栏对应的该元素运动置顶。

以下为完整数据

数据格式:

var list = {"List": [{'A': [ { name: '白酒' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'B': [ { name: '白酒1' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'C': [ { name: '白酒2' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'D': [ { name: '白酒3' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'E': [ { name: '白酒4' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'F': [ { name: '白酒5' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'G': [ { name: '白酒6' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'H': [ { name: '白酒7' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'I': [ { name: '白酒8' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'J': [ { name: '白酒9' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'K': [ { name: '白酒10' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'L': [ { name: '白酒11' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ], 'M': [ { name: '白酒12' }, { 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' }, { 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' }, { 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' }, { 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' } ] } ], } module.exports = list; 

wxml内容:

<view class="container">  <!--左侧栏--> <scroll-view class='scroll_left' scroll-y="true"> <view class="nav_left"> <block wx:for="{{list}}" wx:for-index="idx" wx:for-item="itemName" wx:key="*this"> <!--当前项的id等于item项的id,那个就是当前状态--> <!--用data-index记录这个数据在数组的下标位置,使用data-id设置每个item的id值,供打开右侧侧滑栏使用--> <view class="nav_left_items {{curNav == idx ? 'active' : ''}}" bindtap="switchRightTab" data-index="{{index}}" data-id="{{item.id}}" id="{{idx}}">{{itemName[0].name}}</view> </block> </view> </scroll-view> <!--右侧栏--> <!--如果使用 scroll-into-view 属性,必须设置 scroll-view 的高度,且最好是动态获取屏幕高度 --> <!-- scroll-into-view 属性 值应为某子元素id(id不能以数字开头)。设置哪个方向可滚动,则在哪个方向滚动到该元素 --> <scroll-view scroll-y="true" class="scroll_right" style="height:{{winHeight}}px;" scroll-into-view="{{scrollTopId}}" scroll-with-animation="true"> <view class="nav_right"> <view class='mink' wx:for="{{list}}" wx:for-index="idx" wx:for-item="itemName" wx:key="*this" bindscroll="scrollTop"> <view class='minl' id='{{idx}}'>{{itemName[0].name}}</view> <block wx:for="{{itemName}}" wx:for-index="idex" wx:key="*this" > <view class="nav_right_items" wx:if="{{idex>0}}"> <navigator url="../detail/detail" hover-class="other-navigator-hover"> <view> <image src="{{item.picture}}"></image> <view > <text>{{item.desc}}</text> </view> </view> </navigator> </view> </block> </view> <view style="width:100%;height:30rpx;background:#f0f4f7"></view> </view> </scroll-view> </view> 

js内容:

// pages/list-1/list-1.js
var list = require('../../utils/list.js') Page({ data: { // 左侧点击类样式 curNav: 'A', }, onReady: function () { // 生命周期函数--监听页面初次渲染完成 var listChild1 = list.List[0]; var that = this; // 获取可视区高度 wx.getSystemInfo({ success: function (res) { that.setData({ list: listChild1, winHeight: res.windowHeight, }) } }) }, //点击左侧 tab ,右侧列表相应位置联动 置顶 switchRightTab: function (e) { var id = e.target.id; console.log(typeof id) this.setData({ // 动态把获取到的 id 传给 scrollTopId scrollTopId: id, // 左侧点击类样式 curNav:id }) } }) 

wxss代码 (样式可能会不全,需要引入weui.wxss文件)

/* pages/listers/listers.wxss */
/* pages/list-1/list-1.wxss *//*总体主盒子*/
.container { position: relative; width: 100%; height: 1220rpx; background-color: #f0f4f7; color: #939393; } /*左侧栏主盒子*/ .nav_left{ /*设置行内块级元素(没使用定位)*/ display: inline-block; width: 100%; height: 100%; /*主盒子设置背景色为灰色*/ background: #fff; text-align: center; /* position: fixed; */ left: 0; top: 0; border-top: 1rpx solid #dedede; } /*左侧栏list的item*/ .nav_left .nav_left_items{ background: #fff; /*每个高30px*/ height: 80rpx; /*垂直居中*/ line-height: 80rpx; /*再设上下padding增加高度,总高42px*/ padding: 15rpx 0; /*只设下边线*/ border-bottom: 1px solid #dedede; /*文字14px*/ font-size: 29rpx; color: #101010; font-weight: } /*左侧栏list的item被选中时*/ .nav_left .nav_left_items.active{ /*背景色变成白色*/ background: #f0f4f7; color: #ed1000; } /*右侧栏主盒子*/ .scroll_right{ /*右侧盒子使用了绝对定位*/ position: fixed; top: 0; right: 0; overflow: auto; flex: 1; /*宽度75%,高度占满,并使用百分比布局*/ width: 75%; height: 100%; padding: 20rpx; box-sizing: border-box; background-color: #f0f4f7; border-top: 1rpx solid #dedede; } .mink::after{ display:block;content:'';clear:both; } .jiul,.jiul image{ width: 100%; height: 170rpx; } .minl{ font-size: 29rpx; color: #777; text-align: left; line-height: 60rpx; float: left; background: #f0f4f7; width: 100%; /* height: 50rpx; */ } .mink{ width: 100%; background: #fff; height: 100%; } /*右侧栏list的item*/ .nav_right_items{ /*浮动向左*/ float: left; /*每个item设置宽度是33.33%*/ width: 50%; /* height: 160rpx; */ text-align: center; color: #4a4a4a; background: #fff; } .nav_right_items image{ /*被图片设置宽高*/ width: 60px; height: 50px; margin-top: 15rpx; } .nav_right_items text{ /*给text设成块级元素*/ display: block; margin-top: 5rpx; margin-bottom: 10rpx; font-size: 26rpx; /*设置文字溢出部分为...*/ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } /** 自定义其他点击态样式类 **/ .other-navigator-hover{ background:#fff; } .scroll_left{ width:25%; height:100%; background:#fff; text-align:center; position: fixed; left: 0;top: 0 } 

转载于:https://www.cnblogs.com/changk/p/9260371.html

微信小程序左到右联动相关推荐

  1. 微信小程序 界面从右边滑出_微信小程序--左滑右滑的乐趣

    左滑 右滑 你不再是一个人 无论你是一个程序猿还是一个程序媛,每天干的事除了coding还是coding,代码不能解决的问题(什么问题自己心里还没点abcd数嘛),探探能帮你解决.最近网上特流行一款交 ...

  2. 顺畅操作:教你微信小程序左滑实现更多功能

    前言 当你在使用微信小程序时,是否曾经遇到过左滑操作是如此的顺畅,让你想起了 iPhone 上的滑动操作?左滑操作在微信小程序中已经成为了一个常见的交互方式,它能够帮助用户快速地执行某些操作,提高了用 ...

  3. php地址选择插件,微信小程序中关于三级联动地址选择器的实例分享

    本文介绍了微信小程序三级联动地址选择器的实例代码,分享给大家,有需要的可以一起了解一下 在一些电商类的小程序中,地址选择这个功能一般是必备的,一般的收货信息都需要有一个能选择省市县的控件,当然也有些人 ...

  4. 微信小程序点单左右联动的效果实现

    微信小程序点单左右联动的效果实现 目标效果 原理解析: 点击左边标签会跳到右边相应位置:点击改变rightCur值,转跳相应位置 滑动右边,左边标签会跳到相应的位置:监听并且设置每个右边元素的top和 ...

  5. 实战演练-java+微信小程序实现省市区三级联动

    最终效果图 官方的"省市区选择器"mode="region"里的数据是定死的由微信提供,不能做更改,好在同是picker组件mode="multiSe ...

  6. 微信小程序 - 实现左右菜单联动功能

      今天给大家分享一下如何实现微信小程序左右菜单栏联动效果(相关代码模块我已单独整理放到github上面了,欢迎前来start),具体过程如下: 效果图: github地址:https://githu ...

  7. 微信小程序左滑删除效果的实现完整源码附效果图

    效果图: 功能描述,小程序列表左滑删除功能的实现完整源代码实现: <view wx:for='{{friends}}' wx:key="" wx:if='{{groupTyp ...

  8. 微信小程序左滑删除(Slideview)

    WEUI: https://wechat-miniprogram.github.io/weui/docs/slideview.html 小程序tree左滑编辑: json {"compone ...

  9. 【愚公系列】2022年08月 微信小程序-左划删除效果实现

    文章目录 前言 一.左划删除效果实现 1.自定义实现 2.第三方组件实现 2.1 第三方包安装 2.2 使用 3.1 weui方式使用 3.1 weui安装 3.2 使用 前言 左划删除效果实现主要用 ...

最新文章

  1. linux硬盘满了问题排查
  2. OpenCV各个模块/各个文件夹的含义
  3. python字符串替换空格_python - 用pandas中的NaN替换空白值(空格)
  4. canvas入门实战--邀请卡生成与下载
  5. azure mysql on vnet_管理 VNet 终结点 - Azure 门户 - Azure Database for MySQL | Microsoft Docs
  6. bomb android实战,android 仿qq app源码下载(bmob)
  7. 像冠军一样创建报告! Reporting Services的提示和技巧
  8. 东芝出售西屋电气在即
  9. 世界知名网站的技术实现(转)
  10. 王阳明的智慧:如何让职场从“举步维艰”到“平步青云”?
  11. BZOJ1001 [BeiJing2006]狼抓兔子 (网络流)
  12. 纯JAVA实现雷电飞机大战<可本地联机>
  13. C语言通过QR分解计算矩阵的特征值和特征向量
  14. 【PyTorch深度学习项目实战100例】—— 基于聚类算法完成航空公司客户价值分析任务 | 第18例
  15. 计算机视觉 马尔_基于视觉AI的智能车牌识别相机,识别更精准功能更强大
  16. 使用Quartus II9.0实现用74161计数器设计一个20进制的计数器
  17. Matlab2017a之前版本的 MATLAB MinGW-w64 C/C++ Compiler4.9.2下载
  18. element-ui的输入框只能输入数字
  19. 基于Bert的智能对话机器人
  20. Java实现多线程聊天室

热门文章

  1. leetcode 160 简单难度 相交链表
  2. INRIX自动驾驶汽车平台扩大使用范围 帮助城市管理交通
  3. 人民日报钟声:以和平合作守护世界安全
  4. 谷歌开发者机器学习词汇表:纵览机器学习基本词汇与概念
  5. 华为交换机同步linux时间服务器,华为s5720s系列交换机同步时间
  6. js map 箭头_JS异常函数之箭头函数
  7. 包区别 版本_详解Linux下二进制包、源代码包、rpm包区别与联系
  8. c#与access建立连接用作登录_Linux网络配置 | FTP 实战-虚拟用户登录
  9. redis是单线程的吗?为什么执行速度这么快?
  10. 010_Spring Data JPA一对多关系