符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
怎么在微信小程序中实现tab页面切换功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
站在用户的角度思考问题,与客户深入沟通,找到达坂城网站设计与达坂城网站推广的解决方案,凭借多年的经验,让设计与互联网技术结合,创造个性化、用户体验好的作品,建站类型包括:成都做网站、网站制作、成都外贸网站建设、企业官网、英文网站、手机端网站、网站推广、空间域名、网页空间、企业邮箱。业务覆盖达坂城地区。
wxml
{{ip.title}} {{content}}
wxss
.ip_tab_comtainer { width: 100%; background-color: #F5F5F5; padding: 20rpx 0 0; white-space: nowrap; } .ip_tab_comtainer_padd { display: inline-block; width: 24rpx; } .ip_tab_item_s { display: inline-block; line-height: 40rpx; padding: 12rpx 32rpx; color: #91daf9; margin-right: 8rpx; margin-left: 8rpx; font-size: 28rpx; overflow: hidden; background-color: #ffffff; border: 1px solid #91daf9; } .ip_tab_item_n { display: inline-block; padding: 12rpx 32rpx; line-height: 40rpx; color: #353535; margin-right: 8rpx; background-color: #ffffff; margin-left: 8rpx; 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%; }
js
// pages/horizontal-scroll_tab/horizontal-scroll_tab.js Page({ /** * 页面的初始数据 */ data: { ips: [ { id: "1", title: "日统计", isSelect:true }, { id: "2", title: "月统计", isSelect: false}, { id: "3", title: "年统计", isSelect: false}, ], content:"全部" }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, /** * 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, }); }, })
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注创新互联行业资讯频道,感谢您对创新互联的支持。