您的位置:首页 > 移动开发 > 微信开发

微信小程序——顶部导航标题栏、底部选项卡

2019-03-01 17:40 393 查看

顶部导航标题、底部选项卡均写在app.json中

顶部导航

navigationBarBackgroundColor——顶部背景颜色
navigationBarTitleText——文字内容
navigationBarTitleText——文字颜色

"window":{
"backgroundTextStyle":"light",
"color": "#fff",
"navigationBarBackgroundColor": "#000",
"navigationBarTitleText": "豆瓣电影",
"navigationBarTextStyle":"white"
},

底部选项卡

底部选项最少两个
color——文字默认颜色
selectedColor——文字选中时颜色
backgroundColor——底部背景颜色
pagePath——跳转到指定页面(路径为从最外面往里找)
text——文字内容
图片路径为从最外面往里找
iconPath——默认按钮图片
selectedIconPath——鼠标点击后图片

"tabBar": {
"color": "#fff",
"selectedColor": "#09bb07",
"backgroundColor": "#000",
"list": [
{"pagePath": "pages/index/index",
"text": "当前热映",
"iconPath": "icon/before/01.png",
"selectedIconPath": "icon/after/01.png"
},
{
"pagePath": "pages/logs/logs",
"text": "影院选择",
"iconPath": "icon/before/02.png",
"selectedIconPath": "icon/after/02.png"
}
]

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: