Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
4557aacc
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看板
提交
4557aacc
编写于
9月 28, 2022
作者:
S
sienna1128
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update docs
Signed-off-by:
N
sienna1128
<
lixiaoyan45@huawei.com
>
上级
9b042a61
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
5 deletion
+5
-5
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-overlay.md
...dev/reference/arkui-ts/ts-universal-attributes-overlay.md
+2
-2
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-text-style.md
.../reference/arkui-ts/ts-universal-attributes-text-style.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-z-order.md
...dev/reference/arkui-ts/ts-universal-attributes-z-order.md
+2
-2
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-overlay.md
浏览文件 @
4557aacc
...
...
@@ -10,7 +10,7 @@
| 名称 | 参数类型 | 默认值 | 描述 |
| -------- | -------- | -------- | -------- |
| overlay | value:
string,
<br/>
options?:
{
<br/>
align?:
[Alignment](ts-appendix-enums.md#alignment),
<br/>
offset?:
{x?:
number, y?:
number}
<br/>
} | {
<br/>
align:
Alignment.Center,
<br/>
offset:
{0,
0}
<br/>
} | 在当前组件上,增加遮罩文本。
<br/>
value: 遮罩文本内容。
<br/>
options: 文本定位,align设置文本相对于组件的方位,
[
offset
](
ts-universal-attributes-location.md
)
为文本基于
左上角的偏移量。默认居中于组件
。 |
| overlay | value:
string,
<br/>
options?:
{
<br/>
align?:
[Alignment](ts-appendix-enums.md#alignment),
<br/>
offset?:
{x?:
number, y?:
number}
<br/>
} | {
<br/>
align:
Alignment.Center,
<br/>
offset:
{0,
0}
<br/>
} | 在当前组件上,增加遮罩文本。
<br/>
value: 遮罩文本内容。
<br/>
options: 文本定位,align设置文本相对于组件的方位,
[
offset
](
ts-universal-attributes-location.md
)
为文本基于
自身左上角的偏移量。文本默认处于组件左上角。
<br>
两者都设置时效果重叠,文本相对于组件方位定位后再基于当前位置文本的左上角进行偏移
。 |
## 示例
...
...
@@ -25,7 +25,7 @@ struct OverlayExample {
Text
(
'
floating layer
'
)
.
fontSize
(
12
).
fontColor
(
0xCCCCCC
).
maxLines
(
1
)
Column
()
{
Text
().
backgroundColor
(
Color
.
Red
)
Image
(
$r
(
'
app.media.img
'
)
)
.
width
(
240
).
height
(
240
)
.
overlay
(
"
Winter is a beautiful season, especially when it snows.
"
,
{
align
:
Alignment
.
Bottom
,
...
...
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-text-style.md
浏览文件 @
4557aacc
...
...
@@ -16,7 +16,7 @@
| fontSize | Length
\|
[
Resource
](
ts-types.md#resource
)
| 设置字体大小,Length为number类型时,使用fp单位。字体默认大小10。 |
| fontStyle |
[
FontStyle
](
ts-appendix-enums.md#fontstyle
)
| 设置字体样式。
<br>
默认值:FontStyle.Normal |
| fontWeight | number
\|
[FontWeight](ts-appendix-enums.md#fontweight)
\|
string | 设置文本的字体粗细,number类型取值[100,
900],取值间隔为100,默认为400,取值越大,字体越粗。string类型仅支持number类型取值的字符串形式,例如"400",以及"bold"、"bolder"、"lighter"、"regular"、"medium",分别对应FontWeight中相应的枚举值。
<br/>
默认值:FontWeight.Normal |
| fontFamily | string
\|
[
Resource
](
ts-types.md#resource
)
| 设置字体列表。默认字体'HarmonyOS Sans',且当前只支持这种字体。
使用多个字体,使用','进行分割,优先级按顺序生效。
|
| fontFamily | string
\|
[
Resource
](
ts-types.md#resource
)
| 设置字体列表。默认字体'HarmonyOS Sans',且当前只支持这种字体。|
## 示例
...
...
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-z-order.md
浏览文件 @
4557aacc
# Z序控制
组件的Z序,设置组件的堆叠顺序
,具有较高堆叠顺序的元素在堆叠顺序较低的元素前面
。
组件的Z序,设置组件的堆叠顺序。
> **说明:**
>
...
...
@@ -25,7 +25,7 @@ struct ZIndexExample {
build
()
{
Column
()
{
Stack
()
{
// stack会重叠组件, 默认后定义的在最上面
// stack会重叠组件, 默认后定义的在最上面
,具有较高zIndex值的元素在zIndex较小的元素前面
Text
(
'
1, zIndex(2)
'
)
.
size
({
width
:
'
40%
'
,
height
:
'
30%
'
}).
backgroundColor
(
0xbbb2cb
)
.
zIndex
(
2
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录