首页 > 编程 > JavaScript > 正文

微信小程序tabBar用法实例详解

2019-11-19 14:47:44
字体:
来源:转载
供稿:网友

本文实例讲述了微信小程序tabBar用法。分享给大家供大家参考,具体如下:

1、效果展示

2、原理:在app.json中配置tabBar属性

{ "pages": [  "index",  "picDisplay" ], "window": {  "navigationBarBackgroundColor": "#ffffff",  "navigationBarTextStyle": "black",  "navigationBarTitleText": "首页",  "backgroundColor": "#eeeeee",  "backgroundTextStyle": "light",  "enablePullDownRefresh": false }, "tabBar": {  "color":"#666666",  "selectedColor":"#06bd04",  "list": [{   "pagePath": "index",   "text": "首页",   "iconPath": "images/index.png",   "selectedIconPath": "images/indexHL.png"  },{   "pagePath": "picDisplay",   "text": "图片展示",   "iconPath": "images/picDisplay.png",   "selectedIconPath": "images/picDisplayHL.png"  }] }}

3、关键代码

"tabBar": {  "color":"#666666",  "selectedColor":"#06bd04",  "list": [{   "pagePath": "index",   "text": "首页",   "iconPath": "images/index.png",   "selectedIconPath": "images/indexHL.png"  },{   "pagePath": "picDisplay",   "text": "图片展示",   "iconPath": "images/picDisplay.png",   "selectedIconPath": "images/picDisplayHL.png"  }] }

4、操作方法

新建一个项目,打开app.json文件,将关键代码复制到"window":{},后面,注意window的大括号前加逗号,如下图

配置tabBar属性值

"tabBar": {  //设置tabBar文字默认颜色  "color":"#666666",  //设置tabBar文字被选中是的颜色  "selectedColor":"#06bd04",  //tab列表,数组类型,改数组内至少要有两个但不大于5个的tab对象  "list": [{   //设置tab跳转页面链接   "pagePath": "index",   //设置tab上的文字   "text": "首页",   //设置tab上的默认图标   "iconPath": "images/index.png",   //设置tab被选中时的图标   "selectedIconPath": "images/indexHL.png"  },{   "pagePath": "picDisplay",   "text": "图片展示",   "iconPath": "images/picDisplay.png",   "selectedIconPath": "images/picDisplayHL.png"  }] }

tabBar的5种常用属性与配置说明:

1) color:未选择字体颜色

2) selectedColor:选择字体颜色

3) borderStyle:tabbar上方线的颜色white(仅支持白色和黑色)

4) backgroundColor:tabbar背景颜色

5) list:设置rab列表项(最少2个,最多5个tab)。

另外,list作为数组属性,其每一项又是一个对象,list可以设置4种属性:

text:设置tab上的文字

iconPath:设置tab处于未激活状态时显示的图片路径。

selectedIconPath:设置tab处于激活状态时的图片路径(iconPath与selectedIconPath图片大小限制都是40KB

pagePath:设置触按tab时的跳转页面路径(该页面必须在pages中进行了配置

5、完整实例代码点击此处本站下载

此外,微信小程序开发软件下载地址如下:

https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html?t=201714

希望本文所述对大家微信小程序开发有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表