1. 程式人生 > >微信小程式 頂部標題的相關問題

微信小程式 頂部標題的相關問題

wx.showNavigationBarLoading(Object object)

在當前頁面顯示導航條載入動畫

 

wx.hideNavigationBarLoading(Object object)

在當前頁面隱藏導航條載入動畫

 

wx.setNavigationBarTitle(Object object)

動態設定當前頁面的標題

wx.setNavigationBarTitle({
  title: '當前頁面'
})

 

wx.setNavigationBarColor(Object object)

設定頁面導航條顏色

wx.setNavigationBarColor({
    frontColor: '#ffffff',
    backgroundColor: '#ff0000',
    animation: {
        duration: 400,
        timingFunc: 'easeIn'
    }
})