位置: IT常识 - 正文

微信小程序实现滑动/点击切换Tab(微信小程序实现文件上传)

编辑:rootadmin
微信小程序实现滑动/点击切换Tab 背景

推荐整理分享微信小程序实现滑动/点击切换Tab(微信小程序实现文件上传),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:微信小程序实现文件上传,微信小程序实现轮播图,微信小程序实现页面跳转,微信小程序实现轮播效果的组件,微信小程序实现懒加载,微信小程序实现轮播效果的组件,微信小程序实现懒加载,微信小程序实现懒加载,内容如对您有帮助,希望把文章链接给更多的朋友!

👏 swiper+scroll-view实现滑动/点击切换Tab,以及scroll-left的使用~

🥇文末分享源代码。记得点赞+关注+收藏!

1.实现效果微信小程序实现滑动/点击切换Tab(微信小程序实现文件上传)

2.实现步骤2.1 scroll-view实现tab列表

scroll-view: 可滚动视图区域。使用竖向滚动时,需要给scroll-view一个固定高度,通过 WXSS 设置 height。组件属性的长度单位默认为px。 scroll-x(boolean):允许横向滚动 scroll-y(boolean):允许纵向滚动 scroll-left(number/string):设置横向滚动条位置 scroll-with-animation(boolean):在设置滚动条位置时使用动画过渡

定义一个tab列表,scroll-view包裹,允许横向滚动,设置scroll-left默认为0每个tab设置为display: inline-block,scroll-view设置 white-space: nowrap不换行

<scroll-view scroll-x class="container-head-sc" scroll-left="{{sleft}}" scroll-with-animation="true"> <view class="item" wx:key="list" wx:for="{{list}}" wx:for-index="index">tab-{{index+1}} </view> </scroll-view>.container-head-sc { height: 50rpx; border-radius: 25rpx; background: #eeece4; color: #333; white-space: nowrap;}.container-head-sc .item { padding: 0 20rpx; min-width: 90rpx; text-align: center; line-height: 50rpx; font-size: 26rpx; display: inline-block; height: 50rpx;}给每个tab设置vertical-align: top;防止高度塌陷.container-head-sc .item{ /* 防止高度塌陷 */ + vertical-align: top;}添加当前激活tab样式,定义当前选中项索引currentTab默认为0(即选中第一个),当currentTab==列表的某一项索引表示选中 <view class="item {{currentTab == index ?'active':''}}" data-current="{{index}}" catchtap="handleTabChange" wx:key="list" wx:for="{{list}}" wx:for-index="index">tab-{{index+1}} </view>.container-head-sc .active { color: #ffffff; font-weight: bold; background: orange; border-radius: 25rpx;}添加切换事件 handleTabChange(e) {let { current } = e.target.dataset;if (this.data.currentTab == current || current === undefined) return;this.setData({ currentTab: current,});},2.2 swiper+scroll-iew 实现内容列表

swiper: 滑块视图容器。默认高度为150px; current(number):当前所在滑块的 index,默认为0 autoplay(boolean):是否自动切换 bindchange(eventhandle):current 改变时会触发 change 事件,event.detail = {current, source}

swiper包裹内容列表,需要为swiper指定高度,这里我们设置为撑满一屏

/* swiper默认高度为150px */.container-swiper { height: calc(100% - 110rpx);}设置swiper的current为当前选中的tab标签索引,即currentTab<swiper current="{{currentTab}}" class="container-swiper"> <swiper-item class="flex-column j_c" wx:for="{{list}}" wx:key='index'> </swiper-item></swiper>swiper-item展示内容列表,用scroll-view包裹内容,设置竖向滚动,使用竖向滚动时,需要给scroll-view一个固定高度,这里将scroll-view高度设置为100%,与swiper同高,铺满一屏<swiper-item class="flex-column j_c" wx:for="{{list}}" wx:key='index'> <scroll-view scroll-y class="container-swiper-sc"> <view class="flex-wrap flex-row items"> ....//内容 </view> </scroll-view> </swiper-item>.container-swiper-sc { height: 100%;}swiper添加bindchange事件,当滑动时候,动态的设置currentTab,实现tab列表的同步更新 <swiper current="{{currentTab}}" bindchange="handleSwiperChange" class="container-swiper">....//内容</swiper> handleSwiperChange(e) { this.setData({ currentTab: e.detail.current, }); },可以发现,当swiper所在滑块的 index超出tab列表的可视范围,我们得手动滑动tab列表才能看见当前所选中的tab找到2.1节 scroll-left=“{{sleft}}”,scroll-left用来设置横向滚动条位置,也就是说,我们可以监听swiper的滚动,在滑块所在的index改变的时候,去动态的设置scroll-left的位置scroll-left的计算

wx.createSelectorQuery(): 返回一个 SelectorQuery 对象实例 SelectorQuery.selectAll(string selector): 在当前页面下选择匹配选择器 selector 的所有节点。

getScrollLeft() {const query = wx.createSelectorQuery();query.selectAll(".item").boundingClientRect();//这里将会返回页面中所有class为item的节点,个数为tab列表的长度query.exec((res) => { let num = 0; for (let i = 0; i < this.data.currentTab; i++) { num += res[0][i].width; } // 计算当前currentTab之前的宽度总和 this.setData({ sleft: Math.ceil(num), });});},修改swiper的bindchange事件,每次滑块的变化,都重新计算scroll-left的大小 handleSwiperChange(e) { + this.getScrollLeft(); },3.实现代码<view class="head flex-row"> <view class="head-title">scroll-left</view></view><scroll-view scroll-y class="container"> <view class="container-head flex-row"> <scroll-view scroll-x class="container-head-sc" scroll-left="{{sleft}}" scroll-with-animation="true"> <view class="item {{currentTab == index ?'active':''}}" data-current="{{index}}" catchtap="handleTabChange" wx:key="list" wx:for="{{list}}" wx:for-index="index">tab-{{index+1}} </view> </scroll-view> </view> <swiper current="{{currentTab}}" bindchange="handleSwiperChange" class="container-swiper"> <swiper-item class="flex-column j_c" wx:for="{{list}}" wx:key='index'> <scroll-view scroll-y class="container-swiper-sc"> <view class="flex-wrap flex-row items"> <block wx:for="{{item}}" wx:key="index"> <image src="https://www.yuucn.com/wp-content/uploads/2023/04/1682149599-47bec120528c89e.jpg" mode="aspectFill" class="item-img" /> </block> </view> </scroll-view> </swiper-item> </swiper></scroll-view>page { background-color: #ffa500; height: 100%;}.head { height: 90rpx; color: #333; font-size: 30rpx; padding-left: 30rpx; font-weight: bold; padding-bottom: 10rpx; box-sizing: border-box;}.head-title { position: relative; display: inline-block; height: 100%;}.head-title::after { content: ''; position: absolute; z-index: 99; width: 15px; height: 15px; margin-left: -15rpx; border-top: 3px solid #333; border-right: 3px solid #333; border-top-right-radius: 100%; transform: rotate(-225deg); left: 50%; bottom: 3px;}.container { width: 100%; height: calc(100% - 90rpx); background-color: #fff; overflow: hidden; border-radius: 30rpx 30rpx 0 0;}.container-head { width: 100%; height: 110rpx; box-sizing: border-box; padding: 10rpx 20rpx;}.container-head-sc { height: 50rpx; border-radius: 25rpx; background: #eeece4; color: #333; white-space: nowrap;}.container-head-sc .item { padding: 0 20rpx; min-width: 90rpx; text-align: center; line-height: 50rpx; font-size: 26rpx; display: inline-block; /* 引起高度塌陷 */ vertical-align: top; height: 50rpx;}.container-head-sc .active { color: #ffffff; font-weight: bold; background: orange; border-radius: 25rpx;}/* swiper默认高度为150px */.container-swiper { height: calc(100% - 110rpx);}.container-swiper-sc { height: 100%;}.container-swiper-sc .items { padding: 0 2%; width: 100%; box-sizing: border-box;}.container-swiper-sc .items .item-img { width: 30vw; height: 30vw; margin-right: 2.8%; margin-bottom: 10rpx; flex-shrink: 0;}.container-swiper-sc .items .item-img:nth-child(3n+3) { margin-right: 0;}/* 隐藏scroll-view的滚动条 */::-webkit-scrollbar { width: 0; height: 0; color: transparent;}Page({ data: { currentTab: 0, sleft: "", //横向滚动条位置 list: [1, 2, 3, 4, 5, 6, 7, 22, 32],//测试列表 }, handleTabChange(e) { let { current } = e.target.dataset; if (this.data.currentTab == current || current === undefined) return; this.setData({ currentTab: current, }); }, handleSwiperChange(e) { this.setData({ currentTab: e.detail.current, }); this.getScrollLeft(); }, getScrollLeft() { const query = wx.createSelectorQuery(); query.selectAll(".item").boundingClientRect(); query.exec((res) => { let num = 0; for (let i = 0; i < this.data.currentTab; i++) { num += res[0][i].width; } this.setData({ sleft: Math.ceil(num), }); }); },});4.写在最后🍒看完本文如果觉得有用,记得点赞+关注+收藏鸭 🍕更多小程序相关,关注🍥苏苏的bug,🍡苏苏的github,🍪苏苏的码云~
本文链接地址:https://www.jiuchutong.com/zhishi/298790.html 转载请保留说明!

上一篇:用chatgpt写insar地质灾害的论文,重复率只有1.8%,chatgpt4.0写论文不是梦

下一篇:BERT模型基本理念、工作原理、配置讲解(图文解释)(bert模型能做什么)

  • 劳务派遣公司差额征税的账务处理
  • 所得税费用是什么科目
  • 耕地占用税的税目
  • 单位内部食堂如何做账务处理
  • 代垫水电费增值税
  • 补提盈余公积的分录
  • 小规模纳税人一个季度多少免税
  • 货物所有权转移制度研究
  • 实收资本未认缴资本还用填写吗
  • 不能计入外购固定资产成本的相关税费
  • 专票已认证但又没有发票
  • 向公司一般户的银行借款怎么做账?
  • 建筑业出售废旧电脑取的收入如何申报
  • 商贸有限公司要报地税吗
  • 土地增值税四级税率表
  • 沙特将开征增值税和特殊商品消费税
  • 公司以银行存款名义为员工垫付医疗费分录怎么写
  • 企业亏损减资的会计处理
  • 居民企业的判定条件
  • 广告制作费怎么入账
  • 申报工会经费怎么做账
  • 企业对外捐赠现金的会计处理
  • 企业旅行社名字怎么取
  • 成本法 合并
  • Linux系统怎么设置常亮
  • PHP+jQuery翻板抽奖功能实现
  • excel2019文件加密
  • PHP:ftp_rename()的用法_FTP函数
  • u盘格式化后怎么还原数据
  • 超市收取进场费会计分录
  • 营业外收入增加说明什么问题
  • 工程项目科目如何设置
  • 增值税加计抵减申报表怎么填
  • 微信小程序全栈开发实战
  • 前端环境部署到服务器开发环境
  • php中cookie的使用
  • 退回社保怎么做分录
  • 香港公司代收国际汇款税务怎么处理
  • 企业转让无形资产的方式有
  • 个体工商户季开票30万是否缴纳个人所得税
  • 预开发票后涨价如何进行账务处理?
  • sqlserver行列转换多行多列
  • 收到的加盟费要交税吗
  • 本年利润必须转入利润分配吗
  • 资产负债表其他综合收益
  • 实际利率法如何理解
  • 分公司能
  • 开红字发票如何调整收入?
  • 未分配利润太多的危害
  • 资产负债表中没有其他应收款
  • 进项税转出税额
  • 研发费用范围不包括
  • 营业外支出可以抵扣进项税吗
  • 会计利润的计算公式是
  • mysql性能比较
  • mysql5.7.19 zip 详细安装过程和配置
  • 出现错误,请联系客服
  • window 脚本
  • win7自动变成win10
  • redhat 7.0
  • fedora安装apt
  • 复制粘贴报错
  • windows7不能使用的文件名
  • Win7打印机驱动备份
  • mac2020怎么换开机背景
  • 启用guest用户
  • gsicon.exe是什么进程 作用是什么 gsicon进程查询
  • win10系统中怎么打开IE浏览器
  • 不同系统电脑能共享吗
  • 动态设置class
  • cocos2d教程
  • glslpe
  • js如何引用
  • node.js net模块
  • js函数里的函数怎么调用
  • js如何使用
  • 小型微利企业所得税优惠
  • 出口退税申报时间是每月15号吗
  • 收到海关进口增值税专用缴款书怎么确定库存商品的金额
  • 怎么判断增值税发票是否虚开
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设