setNavigationBarTitle小程序基础性操作标题改变

微信小程序窗口固定不能上下左右滑动   disableScroll

{
  "navigationBarTitleText": "沙发超人",
  "disableScroll": true 
}

微信小程序改变标题,窗口背景色

    //改变标题
    wx.setNavigationBarTitle({
      title: '慧读国际英语',
    })
    //改变背景色
    wx.setNavigationBarColor({
      frontColor: '#ffffff',
      backgroundColor: '#D6FCFD',
      animation: {
        duration: 100,
        timingFunc: 'easeIn'
      }
    })

该部分没有什么坑,主要就是一个熟练度,留给自己看。

window

用于设置小程序的状态栏、导航条、标题、窗口背景色。

属性 类型 默认值 描述 最低版本
navigationBarBackgroundColor HexColor #000000 导航栏背景颜色,如"#000000"  
navigationBarTextStyle String white 导航栏标题颜色,仅支持 black/white  
navigationBarTitleText String   导航栏标题文字内容  
navigationStyle String default 导航栏样式,仅支持 default/custom。custom 模式可自定义导航栏,只保留右上角胶囊状的按钮 微信版本 6.6.0
backgroundColor HexColor #ffffff 窗口的背景色  
backgroundTextStyle String dark 下拉 loading 的样式,仅支持 dark/light  
backgroundColorTop String #ffffff 顶部窗口的背景色,仅 iOS 支持 微信版本 6.5.16
backgroundColorBottom String #ffffff 底部窗口的背景色,仅 iOS 支持 微信版本 6.5.16
enablePullDownRefresh Boolean false 是否开启下拉刷新,详见页面相关事件处理函数  
onReachBottomDistance Number 50 页面上拉触底事件触发时距页面底部距离,单位为px

你可能感兴趣的:(小程序)