提交 59b9c9e9 编写于 作者: inkwalk's avatar inkwalk

docs: add adapt.md

上级 b0298dcb
### uni.setTopWindowStyle(OPTIONS)
设置 topWindow 的样式
> 3.0.5 新增
**平台差异说明**
|App|H5|微信小程序|支付宝小程序|百度小程序|字节跳动小程序|QQ小程序|
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|x|√|x|x|x|x|x|
**OPTIONS 说明**
|属性|类型|说明|
|---|---|---|
|OPTIONS|Object|css 样式对象,需写驼峰css属性 ,{height: '100px', backgroundColor: 'red'}|
**代码示例**
```javascript
uni.setTopWindowStyle({
height: '100px',
backgroundColor: 'red'
})
```
### uni.setLeftWindowStyle(OPTIONS)
设置 leftWindow 的样式
> 3.0.5 新增
**平台差异说明**
|App|H5|微信小程序|支付宝小程序|百度小程序|字节跳动小程序|QQ小程序|
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|x|√|x|x|x|x|x|
**OPTIONS 说明**
|属性|类型|说明|
|---|---|---|
|OPTIONS|Object|css 样式对象,需写驼峰css属性 ,{width: '500px', backgroundColor: 'blue'}|
**代码示例**
```javascript
uni.setLeftWindowStyle({
width: '500px',
backgroundColor: 'blue'
})
```
### uni.setRightWindowStyle(OPTIONS)
设置 rightWindow 的样式
> 3.0.5 新增
**平台差异说明**
|App|H5|微信小程序|支付宝小程序|百度小程序|字节跳动小程序|QQ小程序|
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|x|√|x|x|x|x|x|
**OPTIONS 说明**
|属性|类型|说明|
|---|---|---|
|OPTIONS|Object|css 样式对象,需写驼峰css属性 ,{width: '500px', backgroundColor: 'blue'}|
**代码示例**
```javascript
uni.setRightWindowStyle({
width: '500px',
backgroundColor: 'blue'
})
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册