小程序胶囊按钮的背景颜色和字体更改

3,907 阅读1分钟

注意frontColor和backgroundColor要同时设置

    wx.setNavigationBarColor({
      frontColor: '#ffffff',
      backgroundColor: '#ff0000',
      //动画的样式,可以给他去掉的
      animation: {
        duration: 400,
        timingFunc: 'easeIn'
      }
    })

详细请参考官方文档