首页 > 微信 > 详细

微信小程序底部tabbar

时间:2019-02-15 14:00:08      阅读:322      评论:0      收藏:0      [点我收藏+]

技术分享图片技术分享图片

在 app.json    文件里面 :

{
  "pages":[
    "pages/index/index",
    "pages/logs/logs",
    "pages/topic/topic",
    "pages/category/category"
  ],
  "window":{
    "backgroundTextStyle":"light",
    "navigationBarBackgroundColor": "#000",
    "navigationBarTitleText": "大熊图书馆",
    "navigationBarTextStyle":"white"
  },
  "tabBar": {
    "color": "#8c8c8c",//字体颜色
    "selectedColor": "#f4645f", //选中字体颜色
    "backgroundColor": "#fff",//背景颜色
    "list": [{
      "pagePath": "pages/index/index",
      "text": "图书",
      "iconPath":"images/book.png",
      "selectedIconPath":"images/book1.png"
    }, 
    {
      "pagePath": "pages/category/category",      
      "text": "评论",
      "iconPath":"images/book.png",
      "selectedIconPath":"images/book1.png"
    },
    {
      "pagePath": "pages/topic/topic",      
      "text": "我的",
      "iconPath":"images/book.png",
      "selectedIconPath":"images/book1.png"
    }  
    ],
    "position": "bottom"    //写成   top   就在上面
  }  
}

 

微信小程序底部tabbar

原文:https://www.cnblogs.com/520BigBear/p/10383245.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!