300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > 微信小程序 swiper制作tab切换实现

微信小程序 swiper制作tab切换实现

时间:2022-09-27 00:36:15

相关推荐

微信小程序 swiper制作tab切换实现

微信小程序|小程序开发

微信小程序 swiper tab切换

微信小程序-小程序开发微信小程序 swiper制作tab切换

连续弹出警告源码,ubuntu各版本介绍,tomcat控制台清空,自制迷彩爬虫,php怎么取消自动续费,seo搭建lzw

实现效果图:

包含论坛的网站源码,ubuntu 故障转储,tomcat报上下文错误,京东爬虫area,黑马php资料,nuxt做seolzw

轩辕传奇易源码,ros ubuntu16,war包自带tomcat吗,宿舍养爬虫,php引入layui教程,.seo软文lzw

swiper制作tab切换

index.html

Seside1 Seside2 Seside3 Seside1 Seside2 Seside3

index.css

.swiper-tab{ width: 100%; border-bottom: 2rpx solid #777777; text-align: center; line-height: 80rpx;}.swiper-tab-list{ font-size: 30rpx; display: inline-block; width: 20%; color: #777777; }.on{ color: #da7c0c; border-bottom: 5rpx solid #da7c0c;}.swiper-box{ display: block; height: 100%; width: 100%; overflow: hidden; }.swiper-box view{ text-align: center; }

index.js

//index.js //获取应用实例 var app = getApp() Page( { data: { // 页面配置 winWidth: 0, winHeight: 0, // tab切换 currentTab: 0, }, onLoad: function() { var that = this; // 获取系统信息 wx.getSystemInfo( { success: function( res ) {that.setData( {winWidth: res.windowWidth,winHeight: res.windowHeight}); } }); }, // 滑动切换tab bindChange: function( e ) { var that = this; that.setData( { currentTab: e.detail.current }); }, // 点击tab切换 swichNav: function( e ) { var that = this; if( this.data.currentTab === e.target.dataset.current ) { return false; }else{ that.setData( {currentTab: e.target.dataset.current }) } } })

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

更多微信小程序 swiper制作tab切换实现相关文章请关注PHP中文网!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。