• uni.setBackgroundColor(OBJECT)
  • uni.setBackgroundTextStyle(OBJECT)

    uni.setBackgroundColor(OBJECT)

    动态设置窗口的背景色。

    平台差异说明

    5+AppH5微信小程序支付宝小程序百度小程序头条小程序
    xxxx

    参数说明

    属性类型默认值必填说明
    backgroundColorString窗口的背景色,必须为十六进制颜色值
    backgroundColorTopString顶部窗口的背景色,必须为十六进制颜色值,仅 iOS 支持
    backgroundColorBottomString底部窗口的背景色,必须为十六进制颜色值,仅 iOS 支持
    successFunction接口调用成功的回调函数
    failFunction接口调用失败的回调函数
    completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

    代码示例

    1. uni.setBackgroundColor({
    2. backgroundColor: '#ffffff',
    3. backgroundColorTop: '#222222',
    4. backgroundColorBottom: '#333333'
    5. });

    uni.setBackgroundTextStyle(OBJECT)

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

    平台差异说明

    5+AppH5微信小程序支付宝小程序百度小程序头条小程序
    xxxx

    参数说明

    属性类型必填说明
    textStyleString下拉背景字体、loading 图的样式,值为:dark、light
    successFunction接口调用成功的回调函数
    failFunction接口调用失败的回调函数
    completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

    代码示例

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

    发现错误?想参与编辑?在 GitHub 上编辑此页面!