微信小程序 选项卡的简单实例

前端之家收集整理的这篇文章主要介绍了微信小程序 选项卡的简单实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

微信小程序 选项卡的简单实例

看下效果

代码

home.wxml

<swiper current="{{currentTab}}" class="swiper-Box" duration="300" style="height:{{winHeight - 80}}px" bindchange="bindChange">

热门 关注 好友

home.wxss

.swiper-Box{ display: block; height: 100%; width: 100%; overflow: hidden; }
.swiper-Box view{
text-align: center;
}

home.js

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
});
}

});
},bindChange: function (e) {

var that = this;
that.setData({ currentTab: e.detail.current });

},swichNav: function (e) {

var that = this;

if (this.data.currentTab === e.target.dataset.current) {
return false;
} else {
that.setData({
currentTab: e.target.dataset.current
})
}
}
})

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

原文链接:https://www.f2er.com/weapp/39053.html

猜你在找的微信小程序相关文章