You need to sign in or sign up before continuing.
提交 02b30614 编写于 作者: Q qianlf

add window effect docs

Signed-off-by: Nqianlf <qianliangfang@huawei.com>
Change-Id: I1a35996ed428eafd775241dc6b24cae8e1fd129d
上级 b0252810
......@@ -121,6 +121,21 @@ import window from '@ohos.window';
| AUTO_ROTATION_LANDSCAPE_RESTRICTED | 10 | 表述受开关控制的自动横向旋转模式。 |
| LOCKED | 11 | 表示锁定模式。 |
## BlurStyle<sup>9+</sup>
窗口模糊类型枚举。
此接口为系统接口。
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
| 名称 | 值 | 说明 |
| ------- | ---- | -------------------- |
| OFF | 0 | 表示关闭模糊。 |
| THIN | 1 | 表示较薄的模糊类型。 |
| REGULAR | 2 | 表示适中的模糊类型。 |
| THICK | 3 | 表示较厚的模糊类型。 |
## SystemBarRegionTint<sup>8+</sup>
单个导航栏或状态栏回调信息。
......@@ -2979,6 +2994,119 @@ promise.then((pixelMap)=> {
});
```
### setBlur<sup>9+</sup>
setBlur(radius: number): void
设置窗口模糊。
此接口为系统接口。
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| radius | number | 是 | 表示窗口模糊的半径值,取值范围为大于等于0,0表示关闭窗口模糊。 |
**示例:**
```js
windowClass.setBlur(4.0);
```
### setBackdropBlur<sup>9+</sup>
setBackdropBlur(radius: number): void
设置窗口背景模糊。
此接口为系统接口。
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| radius | number | 是 | 表示窗口背景模糊的半径值,取值范围为大于等于0,0表示关闭窗口背景模糊。 |
**示例:**
```js
windowClass.setBackdropBlur(4.0);
```
### setBackdropBlurStyle<sup>9+</sup>
setBackdropBlurStyle(blurStyle: BlurStyle): void
设置窗口背景模糊类型。
此接口为系统接口。
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | --------- | ---- | ---------------------- |
| blurStyle | [BlurStyle](#blurstyle9) | 是 | 表示窗口背景模糊类型。 |
**示例:**
```js
windowClass.setBackdropBlurStyle(window.BlurType.THIN);
```
### setShadow<sup>9+</sup>
setShadow(radius: number, color?: string, offsetX?: number, offsetY?: number): void
设置窗口边缘阴影。
此接口为系统接口。
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------ | ---- | ------------------------------------------------------------ |
| radius | number | 是 | 表示窗口边缘阴影的模糊半径,取值范围为大于等于0,0表示关闭窗口边缘阴影。 |
| color | string | 否 | 表示窗口边缘阴影的颜色,为十六进制颜色,不区分大小写,例如`#00FF00``#FF00FF00`。 |
| offsetX | number | 否 | 表示窗口边缘阴影的X轴的偏移量,单位为px。 |
| offsetY | number | 否 | 表示窗口边缘阴影的Y轴的偏移量,单位为px。 |
**示例:**
```js
windowClass.setShadow(4.0, '#FF00FF00', 2, 3);
```
### setCornerRadius<sup>9+</sup>
setCornerRadius(cornerRadius: number): void
设置窗口圆角半径。
此接口为系统接口。
**系统能力:** SystemCapability.WindowManager.WindowManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ----------- | ------- | ---- | -------------------- |
| radius | number | 是 | 表示窗口圆角的半径值,取值范围为大于等于0,0表示没有窗口圆角。 |
**示例:**
```js
windowClass.setCornerRadius(4.0);
```
## WindowStageEventType<sup>9+</sup>
WindowStage生命周期。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册