bgcolor.md 1.8 KB
Newer Older
M
mehaotian 已提交
1 2 3 4 5 6
### uni.setBackgroundColor(OBJECT)

动态设置窗口的背景色。

**平台差异说明**

雪洛's avatar
雪洛 已提交
7
|App|H5|微信小程序|支付宝小程序|百度小程序|头条小程序|QQ小程序|
W
wanganxp 已提交
8 9
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|x|x|√|x|√|x|√|
M
mehaotian 已提交
10 11 12 13 14 15 16 17

**参数说明**

|属性|类型|默认值|必填|说明|
|:-|:-|:-|:-|:-|
|backgroundColor|String||否|窗口的背景色,必须为十六进制颜色值|
|backgroundColorTop|String||否|顶部窗口的背景色,必须为十六进制颜色值,仅 iOS 支持|
|backgroundColorBottom|String||否|底部窗口的背景色,必须为十六进制颜色值,仅 iOS 支持|
18 19 20
|success|Function||否|接口调用成功的回调函数|
|fail|Function||否|接口调用失败的回调函数|
|complete|Function||否|接口调用结束的回调函数(调用成功、失败都会执行)|
M
mehaotian 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

**代码示例**

```javascript
uni.setBackgroundColor({
    backgroundColor: '#ffffff',
    backgroundColorTop: '#222222',
    backgroundColorBottom: '#333333'
});
```

### uni.setBackgroundTextStyle(OBJECT)

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

**平台差异说明**

雪洛's avatar
雪洛 已提交
38
|App|H5|微信小程序|支付宝小程序|百度小程序|头条小程序|QQ小程序|
W
wanganxp 已提交
39 40
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|x|x|√|x|√|x|√|
M
mehaotian 已提交
41 42 43 44

**参数说明**

|属性|类型|必填|说明|
45
|:-|:-|:-|:-|
M
mehaotian 已提交
46
|textStyle|String|是|下拉背景字体、loading 图的样式,值为:dark、light|
47 48 49
|success|Function|否|接口调用成功的回调函数|
|fail|Function|否|接口调用失败的回调函数|
|complete|Function|否|接口调用结束的回调函数(调用成功、失败都会执行)|
M
mehaotian 已提交
50 51 52 53 54 55 56

**代码示例**

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