小程序中tab切换页面效果如何做,代码是什么
Admin 2022-08-12 群英技术资讯 741 次浏览
本文实例为大家分享了小程序实现tab更换页面效果的具体代码,供大家参考,具体内容如下
.wxml
<scroll-view scroll-x="true" class="ip_tab_comtainer"> <view class="ip_tab_comtainer_padd"></view> <block wx:for="{{ips}}" wx:for-item="ip" wx:key="{{ip.id}}"> <view class="{{ip.isSelect?'ip_tab_item_s':'ip_tab_item_n'}}" bindtap="onIpItemClick" wx:key="" data-item="{{ip}}"> {{ip.title}} </view> </block> <view class="ip_tab_comtainer_padd"></view> </scroll-view> <view class='content'> <block> <view class="content1" wx:if="{{content=='日统计'}}">{{content}}</view> <view class="content2" wx:if="{{content=='月统计'}}">{{content}}</view> <view class="content3" wx:if="{{content=='年统计'}}">{{content}}</view> </block> </view>
.wxss
page{ width: 100%; height: 100%; } .ip_tab_comtainer { width: 100%; background-color: #F5F5F5; padding: 20rpx 0 0; white-space: nowrap; } .ip_tab_comtainer_padd { display: inline-block; width: 5%; } .ip_tab_item_s { width: 30%; display: inline-block; line-height: 40rpx; text-align: center; color: #91daf9; font-size: 28rpx; overflow: hidden; background-color: #ffffff; border: 1px solid #91daf9; } .ip_tab_item_n { width: 30%; display: inline-block; text-align: center; line-height: 40rpx; color: #353535; background-color: #ffffff; font-size: 28rpx; text-align: center; overflow: hidden; text-overflow: ellipsis; border-radius: 4rpx; border: 1px solid #CCCCCC; } /** 去除横向滚动条 */ ::-webkit-scrollbar { width: 0; height: 0; color: transparent; } .content{ width: 100%; height: 100%; display: flex; background-color: #CCCCCC; } .content1{ width: 100%; height: 100%; display: flex; background-color: #6b10e0; } .content2{ width: 100%; height: 100%; display: flex; background-color: #d41515; } .content3{ width: 100%; height: 100%; display: flex; background-color: #1ac729; }
.js
/** * 页面的初始数据 */ data: { ips: [ { id: "1", title: "日统计", isSelect:true }, { id: "2", title: "月统计", isSelect: false}, { id: "3", title: "年统计", isSelect: false}, ], content: "日统计" }, /** * item点击事件 */ onIpItemClick: function (event) { console.log(event); var id = event.currentTarget.dataset.item.id; var curIndex = 0; for (var i = 0; i < this.data.ips.length; i++) { if (id == this.data.ips[i].id) { this.data.ips[i].isSelect = true; curIndex = i; } else { this.data.ips[i].isSelect = false; } } this.setData({ content: this.data.ips[curIndex].title, ips: this.data.ips, }); },
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
本篇文章给大家带来了关于JavaScript的相关知识,其中主要为大家介绍了JavaScript 条件判断使用技巧详解,有需要的朋友可以借鉴参考下,下面一起来看一下,希望对大家有帮助。
我们在写代码的时候考虑到,代码是写给别人看的,给别人用的,而且要注意的代码的可读性,可维护性,易用性等等,因此提高代码质量是很有必要的。那么我们如何提高js代码质量呢?下面小编就给大家分享一些提高Javascript代码质量的技巧。
在前面随笔《循序渐进VUE+Element 前端应用开发之动态菜单和路由的关联处理》中介绍了在Vue + Element整合框架中,实现了动态菜单和动态路由的处理,从而可以根据用户角色对应的菜单实现本地路由的过滤和绑定,菜单顺利弄好了,就需要进一步开发页面功能了,本篇随笔介绍一个案例,通过获取后端数据后,进行产品信息页面的处理。
这篇文章主要介绍了详解react组件通讯方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
这篇文章主要介绍了vue 封装面包屑组件教程,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008