Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
5863c128
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看板
未验证
提交
5863c128
编写于
3月 27, 2023
作者:
O
openharmony_ci
提交者:
Gitee
3月 27, 2023
浏览文件
操作
浏览文件
下载
差异文件
!16449 调整位置设置示例
Merge pull request !16449 from 李娟/location
上级
5ff6e3e4
c8092978
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
19 addition
and
14 deletion
+19
-14
zh-cn/application-dev/reference/arkui-ts/figures/align.png
zh-cn/application-dev/reference/arkui-ts/figures/align.png
+0
-0
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-location.md
...ev/reference/arkui-ts/ts-universal-attributes-location.md
+19
-14
未找到文件。
zh-cn/application-dev/reference/arkui-ts/figures/align.png
查看替换文件 @
5ff6e3e4
浏览文件 @
5863c128
38.0 KB
|
W:
|
H:
53.6 KB
|
W:
|
H:
2-up
Swipe
Onion skin
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-location.md
浏览文件 @
5863c128
...
...
@@ -32,20 +32,15 @@ struct PositionExample1 {
Column
({
space
:
10
})
{
// 元素内容<元素宽高,设置内容在与元素内的对齐方式
Text
(
'
align
'
).
fontSize
(
9
).
fontColor
(
0xCCCCCC
).
width
(
'
90%
'
)
Text
(
'
top start
'
)
.
align
(
Alignment
.
TopStart
)
.
height
(
50
)
.
width
(
'
90%
'
)
.
fontSize
(
16
)
.
backgroundColor
(
0xFFE4C4
)
Text
(
'
Bottom end
'
)
.
align
(
Alignment
.
BottomEnd
)
.
textAlign
(
TextAlign
.
End
)
.
height
(
50
)
.
width
(
'
90%
'
)
.
fontSize
(
16
)
.
backgroundColor
(
0xFFE4C4
)
Stack
()
{
Text
(
'
First show in bottom end
'
).
height
(
'
65%
'
).
backgroundColor
(
0xD2B48C
)
Text
(
'
Second show in bottom end
'
).
backgroundColor
(
0xF5DEB3
).
opacity
(
0.9
)
}.
width
(
'
90%
'
).
height
(
50
).
margin
({
top
:
5
}).
backgroundColor
(
0xFFE4C4
)
.
align
(
Alignment
.
BottomEnd
)
Stack
()
{
Text
(
'
top start
'
)
}.
width
(
'
90%
'
).
height
(
50
).
margin
({
top
:
5
}).
backgroundColor
(
0xFFE4C4
)
.
align
(
Alignment
.
TopStart
)
// 父容器设置direction为Direction.Ltr,子元素从左到右排列
Text
(
'
direction
'
).
fontSize
(
9
).
fontColor
(
0xCCCCCC
).
width
(
'
90%
'
)
...
...
@@ -87,6 +82,7 @@ struct PositionExample2 {
Text
(
'
position
'
).
fontSize
(
12
).
fontColor
(
0xCCCCCC
).
width
(
'
90%
'
)
Row
()
{
Text
(
'
1
'
).
size
({
width
:
'
30%
'
,
height
:
'
50
'
}).
backgroundColor
(
0xdeb887
).
border
({
width
:
1
}).
fontSize
(
16
)
.
textAlign
(
TextAlign
.
Center
)
Text
(
'
2 position(30, 10)
'
)
.
size
({
width
:
'
60%
'
,
height
:
'
30
'
})
.
backgroundColor
(
0xbbb2cb
)
...
...
@@ -95,6 +91,7 @@ struct PositionExample2 {
.
align
(
Alignment
.
Start
)
.
position
({
x
:
30
,
y
:
10
})
Text
(
'
3
'
).
size
({
width
:
'
45%
'
,
height
:
'
50
'
}).
backgroundColor
(
0xdeb887
).
border
({
width
:
1
}).
fontSize
(
16
)
.
textAlign
(
TextAlign
.
Center
)
Text
(
'
4 position(50%, 70%)
'
)
.
size
({
width
:
'
50%
'
,
height
:
'
50
'
})
.
backgroundColor
(
0xbbb2cb
)
...
...
@@ -111,14 +108,20 @@ struct PositionExample2 {
.
size
({
width
:
'
100
'
,
height
:
'
100
'
})
.
backgroundColor
(
0xdeb887
)
Text
(
'
text
'
)
.
fontSize
(
'
30px
'
)
.
textAlign
(
TextAlign
.
Center
)
.
size
({
width
:
25
,
height
:
25
})
.
backgroundColor
(
Color
.
Green
)
.
markAnchor
({
x
:
25
,
y
:
25
})
Text
(
'
text
'
)
.
fontSize
(
'
30px
'
)
.
textAlign
(
TextAlign
.
Center
)
.
size
({
width
:
25
,
height
:
25
})
.
backgroundColor
(
Color
.
Green
)
.
markAnchor
({
x
:
-
100
,
y
:
-
25
})
Text
(
'
text
'
)
.
fontSize
(
'
30px
'
)
.
textAlign
(
TextAlign
.
Center
)
.
size
({
width
:
25
,
height
:
25
})
.
backgroundColor
(
Color
.
Green
)
.
markAnchor
({
x
:
25
,
y
:
-
25
})
...
...
@@ -128,6 +131,7 @@ struct PositionExample2 {
Text
(
'
offset
'
).
fontSize
(
12
).
fontColor
(
0xCCCCCC
).
width
(
'
90%
'
)
Row
()
{
Text
(
'
1
'
).
size
({
width
:
'
15%
'
,
height
:
'
50
'
}).
backgroundColor
(
0xdeb887
).
border
({
width
:
1
}).
fontSize
(
16
)
.
textAlign
(
TextAlign
.
Center
)
Text
(
'
2 offset(15, 30)
'
)
.
size
({
width
:
120
,
height
:
'
50
'
})
.
backgroundColor
(
0xbbb2cb
)
...
...
@@ -136,6 +140,7 @@ struct PositionExample2 {
.
align
(
Alignment
.
Start
)
.
offset
({
x
:
15
,
y
:
30
})
Text
(
'
3
'
).
size
({
width
:
'
15%
'
,
height
:
'
50
'
}).
backgroundColor
(
0xdeb887
).
border
({
width
:
1
}).
fontSize
(
16
)
.
textAlign
(
TextAlign
.
Center
)
Text
(
'
4 offset(-10%, 20%)
'
)
.
size
({
width
:
100
,
height
:
'
50
'
})
.
backgroundColor
(
0xbbb2cb
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录