背景

wx.setBackgroundTextStyle

基础库 2.1.0 开始支持,低版本需做兼容处理。

动态设置下拉背景字体、loading 图的样式

参数

Object object

object.textStyle 的合法值

示例代码

wx.setBackgroundTextStyle({
  textStyle: 'dark' // 下拉背景字体、loading 图的样式为dark
})

wx.setBackgroundColor

基础库 2.1.0 开始支持,低版本需做兼容处理。

动态设置窗口的背景色

参数

Object object

示例代码

wx.setBackgroundColor({
  backgroundColor: '#ffffff', // 窗口的背景色为白色
})

wx.setBackgroundColor({
  backgroundColorTop: '#ffffff', // 顶部窗口的背景色为白色
  backgroundColorBottom: '#ffffff', // 底部窗口的背景色为白色
})

Last updated