Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
b6edab7c
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
b6edab7c
编写于
12月 19, 2022
作者:
O
openharmony_ci
提交者:
Gitee
12月 19, 2022
浏览文件
操作
浏览文件
下载
差异文件
!12612 12499、12502挑单到monthly
Merge pull request !12612 from 田雨/monthly1214
上级
91053b66
cd6385ac
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
31 addition
and
18 deletion
+31
-18
zh-cn/application-dev/reference/apis/figures/zh-cn_image_0000001219864133.PNG
...v/reference/apis/figures/zh-cn_image_0000001219864133.PNG
+0
-0
zh-cn/application-dev/reference/apis/figures/zh-cn_image_0000001219864133.gif
...v/reference/apis/figures/zh-cn_image_0000001219864133.gif
+0
-0
zh-cn/application-dev/reference/apis/js-apis-matrix4.md
zh-cn/application-dev/reference/apis/js-apis-matrix4.md
+21
-8
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-image.md
...ation-dev/reference/arkui-ts/ts-basic-components-image.md
+9
-9
zh-cn/application-dev/ui/ui-ts-layout-flex.md
zh-cn/application-dev/ui/ui-ts-layout-flex.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/apis/figures/zh-cn_image_0000001219864133.PNG
0 → 100644
浏览文件 @
b6edab7c
148.8 KB
zh-cn/application-dev/reference/apis/figures/zh-cn_image_0000001219864133.gif
已删除
100644 → 0
浏览文件 @
91053b66
29.0 KB
zh-cn/application-dev/reference/apis/js-apis-matrix4.md
浏览文件 @
b6edab7c
...
...
@@ -436,22 +436,35 @@ Matrix的坐标点转换函数,可以将当前的变换效果作用到一个
```
ts
// xxx.ets
import
matrix4
from
'
@ohos.matrix4
'
import
prompt
from
'
@system.prompt
'
@
Entry
@
Component
struct
Test
{
private
matrix1
=
matrix4
.
identity
().
transformPoint
([
100
,
10
])
private
originPoint
:
[
number
,
number
]
=
[
50
,
50
]
private
matrix_1
=
matrix4
.
identity
().
translate
({
x
:
150
,
y
:
-
50
})
private
transformPoint
=
this
.
matrix_1
.
transformPoint
(
this
.
originPoint
)
private
matrix_2
=
matrix4
.
identity
().
translate
({
x
:
this
.
transformPoint
[
0
],
y
:
this
.
transformPoint
[
1
]
})
build
()
{
Column
()
{
Button
(
"
get Point
"
)
.
onClick
(()
=>
{
prompt
.
showToast
({
message
:
JSON
.
stringify
(
this
.
matrix1
),
duration
:
2000
})
}).
backgroundColor
(
0x2788D9
)
Text
(
`矩阵变换前的坐标:[
${
this
.
originPoint
}
]`
)
.
fontSize
(
16
)
Image
(
$r
(
"
app.media.image
"
))
.
width
(
'
600px
'
)
.
height
(
'
300px
'
)
.
margin
({
top
:
50
})
Text
(
`矩阵变换前的坐标:[
${
this
.
transformPoint
}
]`
)
.
fontSize
(
16
)
.
margin
({
top
:
100
})
Image
(
$r
(
"
app.media.image
"
))
.
width
(
'
600px
'
)
.
height
(
'
300px
'
)
.
margin
({
top
:
50
})
.
transform
(
this
.
matrix_2
)
}.
width
(
"
100%
"
).
padding
(
50
)
}
}
```
![
zh-cn_image_0000001219864133
](
figures/zh-cn_image_0000001219864133.gif
)
\ No newline at end of file
![
zh-cn_image_0000001219864133
](
figures/zh-cn_image_0000001219864133.PNG
)
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-image.md
浏览文件 @
b6edab7c
...
...
@@ -75,9 +75,9 @@ Image(src: string | PixelMap | Resource)
除支持
[
通用事件
](
ts-universal-events-click.md
)
外,还支持以下事件:
| 名称 | 功能描述 |
| ----------------------------------------
|
---------------------------------------- |
| ----------------------------------------
-------------------- | --------------------
---------------------------------------- |
| onComplete(callback:
(event?:
{
width:
number,
height:
number,
componentWidth:
number,
<br>
componentHeight:
number,
loadingStatus:
number
})
=
>
void) | 图片成功加载时触发该回调,返回成功加载的图片尺寸。
<br>
- width:图片的宽,单位为像素。
<br/>
- height:图片的高,单位为像素。
<br/>
- componentWidth:组件的宽,单位为像素。
<br/>
- componentHeight:组件的高,单位为像素。
<br/>
- loadingStatus:图片加载成功的状态。
<br/>
|
| onError(callback:
(event?:
{
componentWidth:
number,
componentHeight:
number
, message
<sup>
9+
</sup>
: string })
=
>
void) | 图片加载出现异常时触发该回调。
<br>
- componentWidth:组件的宽,单位为像素。
<br/>
- componentHeight:组件的高,单位为像素。
<br/>
|
| onError(callback:
(event?:
{
componentWidth:
number,
componentHeight:
number
, message
<sup>
9+
</sup>
: string })
=
>
void) | 图片加载出现异常时触发该回调。
<br>
- componentWidth:组件的宽,单位为像素。
<br/>
- componentHeight:组件的高,单位为像素。 |
| onFinish(event:
()
=
>
void) | 当加载的源文件为带动效的svg图片时,当svg动效播放完成时会触发这个回调,如果动效为无限循环动效,则不会触发这个回调。 |
## 示例
...
...
@@ -160,8 +160,8 @@ struct ImageExample1 {
```
tsx
// @ts-nocheck
import
http
from
'
@ohos.net.http
'
;
import
ResponseCode
from
'
@ohos.net.http
'
;
import
http
from
'
@ohos.net.http
'
import
ResponseCode
from
'
@ohos.net.http
'
import
image
from
'
@ohos.multimedia.image
'
...
...
@@ -176,7 +176,7 @@ struct Index {
Column
({
space
:
10
})
{
Button
(
"
获取网络图片
"
)
.
onClick
(()
=>
{
this
.
httpRequest
()
;
this
.
httpRequest
()
})
Image
(
this
.
image
).
height
(
100
).
width
(
100
)
}
...
...
@@ -187,7 +187,7 @@ struct Index {
// 网络图片请求方法
private
httpRequest
()
{
let
httpRequest
=
http
.
createHttp
()
;
let
httpRequest
=
http
.
createHttp
()
httpRequest
.
request
(
"
https://www.example.com/xxx.png
"
,
// 请填写一个具体的网络图片地址
...
...
@@ -207,7 +207,7 @@ struct Index {
this
.
image
=
pixelMap
})
}
else
{
console
.
log
(
"
response code:
"
+
code
)
;
console
.
log
(
"
response code:
"
+
code
)
}
}
}
...
...
zh-cn/application-dev/ui/ui-ts-layout-flex.md
浏览文件 @
b6edab7c
...
...
@@ -6,7 +6,7 @@
-
容器:
[
Flex组件
](
../reference/arkui-ts/ts-container-flex.md
)
作为Flex布局的容器,用于设置布局相关属性。
-
子组件: Flex组件内的子组件自动成为布局的子组件。
-
主轴: Flex组件布局方向的轴线,子组件默认沿着主轴排列。主轴开始的位置称为主轴起始端,结束位置称为主轴终点端。
-
交叉轴: 垂直于主轴方向的轴线。交叉轴起始的位置称为
主
轴首部,结束位置称为交叉轴尾部。
-
交叉轴: 垂直于主轴方向的轴线。交叉轴起始的位置称为
交叉
轴首部,结束位置称为交叉轴尾部。
以FlexDirection.Row的Flex为例:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录