微信小程序添加底部自定义导航栏(tabBar)

Posted Bill

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序添加底部自定义导航栏(tabBar)相关的知识,希望对你有一定的参考价值。

tabBar参数说明参考: 官网文档

具体配置:

1、在app.json中添加你的自定义导航栏信息(名字,点击前图片,点击后图片,要跳转的界面等等)

注意事项:tabBar最多五个

 

参考示例:

技术图片
"tabBar": {
    "color": "#8a8a8a",
    "selectedColor": "#937bf5",
    "list": [
      {
        "iconPath": "images/tabbar/index.png",
        "selectedIconPath": "images/tabbar/index_active.png",
        "pagePath": "pages/index/index",
        "text": "首页"
      },
      {
        "iconPath": "images/tabbar/near.png",
        "selectedIconPath": "images/tabbar/near_active.png",
        "pagePath": "pages/near/near",
        "text": "附近"
      },
      {
        "iconPath": "images/tabbar/message.png",
        "selectedIconPath": "images/tabbar/message_active.png",
        "pagePath": "pages/message/message",
        "text": "消息"
      },
      {
        "iconPath": "images/tabbar/user.png",
        "selectedIconPath": "images/tabbar/user_active.png",
        "pagePath": "pages/user/user",
        "text": "我的"
      }
    ]
  }
View Code

 

以上是关于微信小程序添加底部自定义导航栏(tabBar)的主要内容,如果未能解决你的问题,请参考以下文章

小程序自定义底部导航缓存

微信小程序自定义 顶部nav 和 底部tabbar

微信小程序自定义 顶部nav 和 底部tabbar

微信小程序自定义 顶部nav 和 底部tabbar

微信开发者工具只显示底部导航栏

微信小程序-原生开发实用教程03-自定义底部导航(含自定义tabBar导航高亮需点击两次的解决方案)