Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
5c22490c
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看板
未验证
提交
5c22490c
编写于
9月 27, 2022
作者:
L
luoying_ace
提交者:
Gitee
9月 27, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zh-cn/application-dev/reference/arkui-ts/ts-basic-gestures-pangesture.md.
Signed-off-by:
N
luoying_ace
<
luoying19@huawei.com
>
上级
fba55240
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
34 addition
and
15 deletion
+34
-15
zh-cn/application-dev/reference/arkui-ts/ts-basic-gestures-pangesture.md
...on-dev/reference/arkui-ts/ts-basic-gestures-pangesture.md
+34
-15
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-gestures-pangesture.md
浏览文件 @
5c22490c
...
...
@@ -17,7 +17,7 @@ PanGesture(value?: { fingers?: number; direction?: PanDirection; distance?: numb
| -------- | -------- | -------- | -------- |
| fingers | number | 否 | 触发拖动的最少手指数,最小为1指,
最大取值为10指。
<br/>
默认值:1 |
| direction | PanDirection | 否 | 触发拖动的手势方向,此枚举值支持逻辑与(
&
)和逻辑或(
\|
)运算。
<br/>
默认值:PanDirection.All |
| distance | number | 否 | 最小拖动识别距离,单位为vp。
<br/>
默认值:5
.0
<br/>
**说明:**
<br/>
> tab滑动与该拖动手势事件同时存在时,可将distance值设为1,使拖动更灵敏,避免造成事件错乱。 |
| distance | number | 否 | 最小拖动识别距离,单位为vp。
<br/>
默认值:5
<br/>
**说明:**
<br/>
> tab滑动与该拖动手势事件同时存在时,可将distance值设为1,使拖动更灵敏,避免造成事件错乱。 |
## PanDirection枚举说明
...
...
@@ -73,28 +73,47 @@ PanGestureOptions(value?: { fingers?: number; direction?: PanDirection; distance
@
Entry
@
Component
struct
PanGestureExample
{
@
State
offsetX
:
number
=
0
@
State
offsetY
:
number
=
0
@
State
offsetX
:
number
=
0
;
@
State
offsetY
:
number
=
0
;
@
State
positionX
:
number
=
0
;
@
State
positionY
:
number
=
0
;
private
panOption
:
PanGestureOptions
=
new
PanGestureOptions
({
direction
:
PanDirection
.
Left
|
PanDirection
.
Right
});
build
()
{
Flex
({
direction
:
FlexDirection
.
Column
,
alignItems
:
ItemAlign
.
Center
,
justifyContent
:
FlexAlign
.
SpaceBetween
})
{
Text
(
'
PanGesture offset:
\n
X:
'
+
this
.
offsetX
+
'
\n
'
+
'
Y:
'
+
this
.
offsetY
)
}
.
height
(
100
).
width
(
200
).
padding
(
20
).
border
({
width
:
1
}).
margin
(
80
)
.
translate
({
x
:
this
.
offsetX
,
y
:
this
.
offsetY
,
z
:
5
})
.
gesture
(
PanGesture
({})
Column
()
{
Column
()
{
Text
(
'
PanGesture offset:
\n
X:
'
+
this
.
offsetX
+
'
\n
'
+
'
Y:
'
+
this
.
offsetY
)
}
.
height
(
200
)
.
width
(
300
)
.
padding
(
20
)
.
border
({
width
:
3
})
.
margin
(
50
)
.
translate
({
x
:
this
.
offsetX
,
y
:
this
.
offsetY
,
z
:
0
})
// 左右拖动触发该手势事件
.
gesture
(
PanGesture
(
this
.
panOption
)
.
onActionStart
((
event
:
GestureEvent
)
=>
{
console
.
info
(
'
Pan start
'
)
console
.
info
(
'
Pan start
'
)
;
})
.
onActionUpdate
((
event
:
GestureEvent
)
=>
{
this
.
offsetX
=
event
.
offsetX
this
.
offsetY
=
event
.
offsetY
this
.
offsetX
=
this
.
positionX
+
event
.
offsetX
;
this
.
offsetY
=
this
.
positionY
+
event
.
offsetY
;
})
.
onActionEnd
(()
=>
{
console
.
info
(
'
Pan end
'
)
this
.
positionX
=
this
.
offsetX
;
this
.
positionY
=
this
.
offsetY
;
console
.
info
(
'
Pan end
'
);
})
)
Button
(
'
修改PanGesture触发条件
'
)
.
onClick
(()
=>
{
// 将PanGesture手势事件触发条件改为双指以任意方向拖动
this
.
panOption
.
setDirection
(
PanDirection
.
All
);
this
.
panOption
.
setFingers
(
2
);
})
)
}
}
}
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录