Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
af444f99
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
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看板
未验证
提交
af444f99
编写于
3月 17, 2023
作者:
O
openharmony_ci
提交者:
Gitee
3月 17, 2023
浏览文件
操作
浏览文件
下载
差异文件
!16114 backgroundBlurStyle扩充接口的新文档
Merge pull request !16114 from hehongyang9/dev
上级
b9aafd7a
7d31258f
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
43 addition
and
17 deletion
+43
-17
zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_background_blur_style.png
...ce/arkui-ts/figures/zh-cn_image_background_blur_style.png
+0
-0
zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md
...n/application-dev/reference/arkui-ts/ts-appendix-enums.md
+29
-0
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md
...e/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md
+14
-17
未找到文件。
zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_background_blur_style.png
查看替换文件 @
b9aafd7a
浏览文件 @
af444f99
84.6 KB
|
W:
|
H:
115.3 KB
|
W:
|
H:
2-up
Swipe
Onion skin
zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md
浏览文件 @
af444f99
...
...
@@ -513,3 +513,32 @@
| Block | 自身节点响应触摸事件的命中测试,但阻止被该节点屏蔽的子节点和其他节点的命中测试。 |
| Transparent | 自身节点和子节点响应触摸事件的命中测试,并允许对被该节点屏蔽的其他节点进行命中测试。 |
| None | 自身节点不会响应触摸事件的命中测试,但子节点会对触摸事件进行命中测试。 |
## BlurStyle<sup>9+</sup>
该接口支持在ArkTS卡片中使用。
| 名称 | 描述 |
| ------- | ---------- |
| Thin | 轻薄材质模糊。 |
| Regular | 普通厚度材质模糊。 |
| Thick | 厚材质模糊。 |
| BackgroundThin | 近距景深模糊。 |
| BackgroundRegular | 中距景深模糊。 |
| BackgroundThick | 远距景深模糊。 |
| BackgroundUltraThick | 超远距景深模糊。 |
## ThemeColorMode<sup>10+</sup>
| 名称 | 描述 |
| ------- | ---------- |
| System | 跟随系统深浅色模式。 |
| Light | 固定使用浅色模式。 |
| Dark | 固定使用深色模式。 |
## AdaptiveColor<sup>10+</sup>
| 名称 | 描述 |
| ------- | ----------- |
| Default | 不使用取色模糊。使用默认的颜色作为蒙版颜色。 |
| Average | 使用取色模糊。将取色区域的颜色平均值作为蒙版颜色。 |
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md
浏览文件 @
af444f99
...
...
@@ -10,19 +10,16 @@
## 属性
| 名称 | 参数
类型
| 描述 |
| 名称 | 参数 | 描述 |
| -------------------- | ----------------------- | ------------------------ |
| backgroundBlurStyle |
[
BlurStyle
](
#blurstyle
)
| 为当前组件提供一种在背景和内容之间的模糊能力,入参为模糊材质
。
<br/>
该接口支持在ArkTS卡片中使用。 |
| backgroundBlurStyle |
value:
[
BlurStyle
](
ts-appendix-enums.md#blurstyle9
)
,
<br/>
options
<sup>
10+
</sup>
?:
[
BackgroundBlurStyleOptions
](
#backgroundblurstyleoptions10对象说明
)
| 为当前组件提供一种在背景和内容之间的模糊能力。
<br/>
value: 背景模糊样式。模糊样式中封装了模糊半径、蒙版颜色、蒙版透明度、饱和度四个参数。
<br/>
options: 可选参数,背景模糊选项
。
<br/>
该接口支持在ArkTS卡片中使用。 |
## B
lurStyle
## B
ackgroundBlurStyleOptions<sup>10+</sup>对象说明
该接口支持在ArkTS卡片中使用。
| 名称 | 描述 |
| ------- | ---------- |
| Thin | 轻薄材质。 |
| Regular | 普通厚度材质。 |
| Thick | 厚材质。 |
| 名称 | 参数类型 | 必填 | 描述 |
| ----------- | ------| ------ | ------ |
| colorMode
<sup>
10+
</sup>
|
[
ThemeColorMode
](
ts-appendix-enums.md#themecolormode10
)
| 否 | 背景模糊效果使用的深浅色模式。
<br/>
默认值:ThemeColorMode.System |
| adaptiveColor
<sup>
10+
</sup>
|
[
AdaptiveColor
](
ts-appendix-enums.md#adaptivecolor10
)
| 否 | 背景模糊效果使用的取色模式。
<br/>
默认值:AdaptiveColor.Default |
## 示例
...
...
@@ -30,16 +27,16 @@
// xxx.ets
@
Entry
@
Component
struct
Index
{
struct
BackgroundBlurStyleDemo
{
build
()
{
Column
()
{
Row
()
{
Text
(
"
Thin Material
"
)
}
.
width
(
350
)
.
height
(
300
)
.
backgroundBlurStyle
(
BlurStyle
.
Thin
)
.
position
({
x
:
"
15%
"
,
y
:
"
30%
"
})
.
width
(
'
50%
'
)
.
height
(
'
50%
'
)
.
backgroundBlurStyle
(
BlurStyle
.
Thin
,
{
colorMode
:
ThemeColorMode
.
Light
,
adaptiveColor
:
AdaptiveColor
.
Default
}
)
.
position
({
x
:
'
15%
'
,
y
:
'
30%
'
})
}
.
height
(
'
100%
'
)
.
width
(
'
100%
'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录