wx.setNavigationBarColor iOS 失效
发布于 5 年前 作者 nxiang 1234 次浏览 来自 问答

wx.setNavigationBarColor 在 iOS 11 微信版本 6.5.12 下 backgroundColor 设置无效,但是 frontColor 生效

代码如下

var colors = ["#9e9e9e", “#2196f3”, “#4caf50”, “#ffc107”, “#f44336”];

wx.setNavigationBarColor({

 frontColor: ‘#ffffff’,

 backgroundColor: colors[data.color],

 animation: {

   duration: 400,

   timingFunc: ‘easeIn’

 }

});

回到顶部