微信小程序配置顶部导航条标题颜色


关于小程序导航顶部配置都写在.json文件中。

{
  "window":{
    "navigationBarBackgroundColor": "#ffffff",
    "navigationBarTextStyle": "black",
    "navigationBarTitleText": "微信接口功能演示",
    "backgroundColor": "#eeeeee",
    "backgroundTextStyle": "light"
  }
}

微信小程序配置顶部导航条标题颜色_第1张图片




----------

navigationBarBackgroundColor 导航栏背景颜色,如”#000000”

navigationBarTextStyle 导航栏标题颜色,仅支持 black/white

navigationBarTitleText 导航栏标题文字内容

backgroundColor 窗口的背景色

backgroundTextStyle 下拉背景字体、loading 图的样式,仅支持 dark/light

enablePullDownRefresh 是否开启下拉刷新,详见页面相关事件处理函数。
“`

你可能感兴趣的:(导航,微信,微信小程序,微信小程序)