欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 微信开发 > 微信小程序之顶部导航栏

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:740

高端HTML5响应式企业通用网

2020-05-06   浏览:521

html5响应式外贸网站英文版

2020-05-08   浏览:510

HTML5自适应律师工作室类网

2020-04-04   浏览:504

HTML5影视传媒文化公司类网

2020-05-12   浏览:502

微信小程序之顶部导航栏

发布时间:2021-01-08  

需求:顶部导航栏效果图:wxml:!--导航条-- view class="navbar" text wx:for="{{navbar}}" data-idx="{{index}}" class="item {{currentTab==index ? 'active' : ''}}" wx:key ...

 

 

 

需求:顶部导航栏 
效果图: 

微信小程序之顶部导航栏

wxml:

 

<!--导航条-->

<viewclass="navbar">

<textwx:for="{{navbar}}"data-idx="{{index}}"class="item {{currentTab==index ? 'active' : ''}}"wx:key="unique"bindtap="navbarTap">{{item}}</text>

</view>

 

<!--首页-->

<viewhidden="{{currentTab!==0}}">

tab_01

</view>

 

<!--搜索-->

<viewhidden="{{currentTab!==1}}">

tab_02

</view>

 

<!--我-->

<viewhidden="{{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

})

}

})

运行: 

微信小程序之顶部导航栏

本文标签

: