Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
5cc5cb7d
D
Docs
项目概览
OpenHarmony
/
Docs
接近 2 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
5cc5cb7d
编写于
8月 08, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 08, 2022
浏览文件
操作
浏览文件
下载
差异文件
!7763 窗口效果接口资料
Merge pull request !7763 from qianlf/master
上级
576abbf3
02b30614
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
128 addition
and
0 deletion
+128
-0
zh-cn/application-dev/reference/apis/js-apis-window.md
zh-cn/application-dev/reference/apis/js-apis-window.md
+128
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-window.md
浏览文件 @
5cc5cb7d
...
@@ -121,6 +121,21 @@ import window from '@ohos.window';
...
@@ -121,6 +121,21 @@ import window from '@ohos.window';
| AUTO_ROTATION_LANDSCAPE_RESTRICTED | 10 | 表述受开关控制的自动横向旋转模式。 |
| AUTO_ROTATION_LANDSCAPE_RESTRICTED | 10 | 表述受开关控制的自动横向旋转模式。 |
| LOCKED | 11 | 表示锁定模式。 |
| LOCKED | 11 | 表示锁定模式。 |
## BlurStyle<sup>9+</sup>
窗口模糊类型枚举。
此接口为系统接口。
**系统能力:**
SystemCapability.WindowManager.WindowManager.Core
| 名称 | 值 | 说明 |
| ------- | ---- | -------------------- |
| OFF | 0 | 表示关闭模糊。 |
| THIN | 1 | 表示较薄的模糊类型。 |
| REGULAR | 2 | 表示适中的模糊类型。 |
| THICK | 3 | 表示较厚的模糊类型。 |
## SystemBarRegionTint<sup>8+</sup>
## SystemBarRegionTint<sup>8+</sup>
单个导航栏或状态栏回调信息。
单个导航栏或状态栏回调信息。
...
@@ -2979,6 +2994,119 @@ promise.then((pixelMap)=> {
...
@@ -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>
## WindowStageEventType<sup>9+</sup>
WindowStage生命周期。
WindowStage生命周期。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录