Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
fa8ec848
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看板
未验证
提交
fa8ec848
编写于
7月 28, 2022
作者:
O
openharmony_ci
提交者:
Gitee
7月 28, 2022
浏览文件
操作
浏览文件
下载
差异文件
!7280 update docs
Merge pull request !7280 from 田雨/OpenHarmony-3.1-Release
上级
989c8559
d8112ce5
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
24 addition
and
24 deletion
+24
-24
zh-cn/application-dev/reference/apis/js-apis-router.md
zh-cn/application-dev/reference/apis/js-apis-router.md
+2
-2
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-image.md
...ation-dev/reference/arkui-ts/ts-basic-components-image.md
+5
-5
zh-cn/application-dev/reference/arkui-ts/ts-basic-gestures-pinchgesture.md
...-dev/reference/arkui-ts/ts-basic-gestures-pinchgesture.md
+16
-16
zh-cn/application-dev/reference/arkui-ts/ts-container-flex.md
...n/application-dev/reference/arkui-ts/ts-container-flex.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-router.md
浏览文件 @
fa8ec848
...
...
@@ -162,7 +162,7 @@ back(options?: RouterOptions ): void
// 通过back,返回到detail页面
export
default
{
backToDetail
()
{
router
.
back
({
ur
i
:
'
pages/detail/detail
'
});
router
.
back
({
ur
l
:
'
pages/detail/detail
'
});
}
}
```
...
...
@@ -334,7 +334,7 @@ getParams(): Object
// 在detail页面中
export
default
{
onInit
()
{
console
.
info
(
'
showData1:
'
+
router
.
getParams
()
.
data1
);
console
.
info
(
'
showData1:
'
+
router
.
getParams
()
[
data1
]
);
}
}
```
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-image.md
浏览文件 @
fa8ec848
...
...
@@ -215,8 +215,8 @@ struct ImageExample2 {
@Entry
@Component
struct ImageExample3 {
@State width: number = 0
@State height: number = 0
@State width
Value
: number = 0
@State height
Value
: number = 0
private on: Resource = $r('app.media.wifi_on')
private off: Resource = $r('app.media.wifi_off')
private on2off: Resource = $r('app.media.wifi_on2off')
...
...
@@ -236,13 +236,13 @@ struct ImageExample3 {
.objectFit(ImageFit.Cover)
.height(180).width(180)
.onComplete((msg: { width: number,height: number }) => {
this.width = msg.width
this.height = msg.height
this.width
Value
= msg.width
this.height
Value
= msg.height
})
.onError(() => {
console.log('load image fail')
})
.overlay('\nwidth: ' + String(this.width
) + ' height: ' + String(this.height
), {
.overlay('\nwidth: ' + String(this.width
Value) + ' height: ' + String(this.heightValue
), {
align: Alignment.Bottom,
offset: { x: 0, y: 20 }
})
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-gestures-pinchgesture.md
浏览文件 @
fa8ec848
...
...
@@ -14,27 +14,27 @@
PinchGesture(options?: { fingers?: number, distance?: number })
-
参数
| 参数名称 | 参数类型 | 必填 | 默认值 | 参数描述 |
| 参数名称 | 参数类型 | 必填 | 默认值 | 参数描述 |
| -------- | -------- | -------- | -------- | -------- |
| fingers | number | 否 | 2 | 触发捏合的最少手指数,
最小为2指,最大为5指。 |
| distance | number | 否 | 3.0 | 最小识别距离,单位为vp。 |
| fingers | number | 否 | 2 | 触发捏合的最少手指数,
最小为2指,最大为5指。 |
| distance | number | 否 | 3.0 | 最小识别距离,单位为vp。 |
## 事件
| 名称 | 功能描述 |
| -------- | -------- |
| onActionStart((event?:
GestureEvent)
=
>
void) | Pinch手势识别成功回调。 |
| onActionUpdate((event?:
GestureEvent)
=
>
void) | Pinch手势移动过程中回调。 |
| onActionEnd((event?:
GestureEvent)
=
>
void) | Pinch手势识别成功,手指抬起后触发回调。 |
| onActionCancel(event:
()
=
>
void) | Pinch手势识别成功,接收到触摸取消事件触发回调。 |
| 名称 | 功能描述 |
| -------- | -------- |
| onActionStart((event?:
GestureEvent)
=
>
void) | Pinch手势识别成功回调。 |
| onActionUpdate((event?:
GestureEvent)
=
>
void) | Pinch手势移动过程中回调。 |
| onActionEnd((event?:
GestureEvent)
=
>
void) | Pinch手势识别成功,手指抬起后触发回调。 |
| onActionCancel(event:
()
=
>
void) | Pinch手势识别成功,接收到触摸取消事件触发回调。 |
-
GestureEvent对象中与Pinch手势相关的属性
| 属性名称 | 属性类型 | 描述 |
| 属性名称 | 属性类型 | 描述 |
| -------- | -------- | -------- |
| scale | number | 缩放比例,用于PinchGesture手势触发场景。 |
| pinchCenterX | number | 捏合手势中心点X轴坐标,单位为px。 |
| pinchCenterY | number | 捏合手势中心点Y轴坐标,单位为px。 |
| scale | number | 缩放比例,用于PinchGesture手势触发场景。 |
| pinchCenterX | number | 捏合手势中心点X轴坐标,单位为px。 |
| pinchCenterY | number | 捏合手势中心点Y轴坐标,单位为px。 |
## 示例
...
...
@@ -43,21 +43,21 @@ PinchGesture(options?: { fingers?: number, distance?: number })
@Entry
@Component
struct PinchGestureExample {
@State scale: number = 1
@State scale
Value
: number = 1
build() {
Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
Text('PinchGesture scale:' + this.scale)
}
.height(100).width(200).padding(20).border({ width: 1 }).margin(80)
.scale({ x: this.scale
, y: this.scale, z: this.scal
e })
.scale({ x: this.scale
Value, y: this.scaleValue, z: this.scaleValu
e })
.gesture(
PinchGesture()
.onActionStart((event: GestureEvent) => {
console.info('Pinch start')
})
.onActionUpdate((event: GestureEvent) => {
this.scale = event.scale
this.scale
Value
= event.scale
})
.onActionEnd(() => {
console.info('Pinch end')
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-flex.md
浏览文件 @
fa8ec848
...
...
@@ -43,7 +43,7 @@ Flex(options?: { direction?: FlexDirection, wrap?: FlexWrap, justifyContent?: F
-
FlexWrap枚举说明
| 名称 | 描述 |
| -------- | -------- |
| NoWrap | Flex容器的元素单行/列布局,子项允许超出容器。 |
| NoWrap | Flex容器的元素单行/列布局,子项
不
允许超出容器。 |
| Wrap | Flex容器的元素多行/列排布,子项允许超出容器。 |
| WrapReverse | Flex容器的元素反向多行/列排布,子项允许超出容器。 |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录