my.setBackgroundColor
说明
mPaaS 10.1.32 及以上版本支持该接口。
动态设置窗口的背景色。
入参
名称 | 类型 | 必填 | 描述 |
backgroundColor | HexColor | 是 | 窗口的背景色 |
backgroundColorTop | HexColor | 是 | 顶部窗口的背景色,仅 iOS 支持 |
backgroundColorBottom | HexColor | 是 | 底部窗口的背景色,仅 iOS 支持 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
代码示例
/*设置窗口背景色*/
my.setBackgroundColor({
backgroundColor: '#ffffff'
})
/*分别设置顶部窗口和底部窗口背景色*/
my.setBackgroundColor({
backgroundColorTop: '#ffffff',
backgroundColorBottom: '#ffffff'
})
my.setBackgroundTextStyle
说明
mPaaS 10.1.32 及以上版本支持该接口。
动态设置下拉背景的字体、加载图形的样式。
入参
名称 | 类型 | 必填 | 描述 |
textStyle | String | 是 | 下拉背景的字体、加载图形的样式,仅支持 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
代码示例
my.setBackgroundTextStyle({
textStyle: 'dark', // 下拉背景字体、loading 图的样式为dark
})
文档内容是否对您有帮助?