码迷,mamicode.com
首页 > 微信 > 详细

微信小程序之顶部导航栏

时间:2021-05-24 12:04:59      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pos   direction   text   enter   tap   back   UNC   auto   ==   

wxml:

<!--导航条-->
<view class="navbar">
<text wx:for="{{navbar}}" data-idx="{{index}}" class="item {{currentTab==index ? ‘active‘ : ‘‘}}" wx:key="unique" bindtap="navbarTap">{{item}}</text>
</view>

<!--首页-->
<view hidden="{{currentTab!==0}}">
tab_01
</view>

<!--热门-->
<view hidden="{{currentTab!==1}}">
tab_02
</view>

<!--我的-->
<view hidden="{{currentTab!==2}}">
tab_03
</view>

 

wxss:

page{
display: flex;
flex-direction: column;
height: 100%;
}
.navbar{
flex: none;
display: flex;
background: #fff;
}
.navbar .item{
position: relative;
flex: auto;
text-align: center;
line-height: 80rpx;
}
.navbar .item.active{
color: #FFCC00;
}
.navbar .item.active:after{
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 4rpx;
background: #FFCC00;
}

 

js:      

var app = getApp()
Page({
data: {
navbar: [‘首页‘, ‘搜索‘, ‘我‘],
currentTab: 0
},
navbarTap: function(e){
this.setData({
currentTab: e.currentTarget.dataset.idx
})
}
})

微信小程序之顶部导航栏

标签:pos   direction   text   enter   tap   back   UNC   auto   ==   

原文地址:https://www.cnblogs.com/binbincome/p/14772963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!