微信小程序 | 隐藏底部菜单栏 json中的tabBar
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
个人记录
微信小程序 | 隐藏json中的tabBar
一、小程序的app.json中的底部菜单设置
底部菜单栏:
代码:
{
"pages": [
"pages/index/index",
"pages/login/login"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "微信小程序",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#AAAAAA",
"selectedColor": "#26BAEE",
"backgroundColor": "#fff",
"borderStyle": "white",
"list": [
{
"selectedIconPath": "image/index/ic_home-select.png",
"iconPath": "image/index/ic_home@2x.png",
"pagePath": "pages/index/index",
"text": "首页"
},
{
"selectedIconPath": "image/index/ic_market-select.png",
"iconPath": "image/index/ic_market@2x.png",
"pagePath": "pages/market/market",
"text": "广告超市"
},
{
"selectedIconPath": "image/index/ic_order-select.png",
"iconPath": "image/index/ic_order@2x.png",
"pagePath": "pages/order/order",
"text": "订单"
},
{
"selectedIconPath": "image/index/ic_user-select.png",
"iconPath": "image/index/ic_user@2x.png",
"pagePath": "pages/user/user",
"text": "我的"
}
]
},
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"networkTimeout": {
"request": 5000
}
}
二、隐藏tabBar
代码:
wx.hideTabBar()-- 隐藏底部按钮
使用微信小程序API中的 wx.hideTabBar() 方法,直接调用即可
三、效果图
欢迎关注公众号:慌途L
后面会慢慢将文章迁移至公众号,也是方便在没有电脑的情况下可以进行翻阅,更新的话会两边同时更新,大家不用担心!
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)