Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
e462fb47
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看板
未验证
提交
e462fb47
编写于
6月 21, 2023
作者:
X
xixian
提交者:
Gitee
6月 21, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zh-cn/application-dev/reference/apis/js-apis-inputmonitor.md.
Signed-off-by:
N
xixian
<
xixian@huawei.com
>
上级
2c594f5c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
12 deletion
+12
-12
zh-cn/application-dev/reference/apis/js-apis-inputmonitor.md
zh-cn/application-dev/reference/apis/js-apis-inputmonitor.md
+12
-12
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-inputmonitor.md
浏览文件 @
e462fb47
...
@@ -214,7 +214,7 @@ try {
...
@@ -214,7 +214,7 @@ try {
## inputMonitor.on(pinch)<sup>10+</sup>
## inputMonitor.on(pinch)<sup>10+</sup>
on(type: "pinch", receiver: Callback
<
[Pinch](js-apis-multimodalinput-gestureevent.md
/
#pinch)
>
): void
on(type: "pinch", receiver: Callback
<
[Pinch](js-apis-multimodalinput-gestureevent.md#pinch)
>
): void
开始监听全局触控板捏合事件。
开始监听全局触控板捏合事件。
...
@@ -227,7 +227,7 @@ on(type: "pinch", receiver: Callback<[Pinch](js-apis-multimodalinput-gesturee
...
@@ -227,7 +227,7 @@ on(type: "pinch", receiver: Callback<[Pinch](js-apis-multimodalinput-gesturee
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------- | ---- | ------------------- |
| -------- | -------------------------- | ---- | ------------------- |
| type | string | 是 | 输入设备事件类型,取值“pinch”。 |
| type | string | 是 | 输入设备事件类型,取值“pinch”。 |
| receiver | Callback
<
[Pinch](js-apis-multimodalinput-gestureevent.md
/
#pinch)
>
| 是 | 回调函数,异步上报捏合输入事件。 |
| receiver | Callback
<
[Pinch](js-apis-multimodalinput-gestureevent.md#pinch)
>
| 是 | 回调函数,异步上报捏合输入事件。 |
**示例:**
**示例:**
...
@@ -244,7 +244,7 @@ try {
...
@@ -244,7 +244,7 @@ try {
## inputMonitor.off(pinch)<sup>10+</sup>
## inputMonitor.off(pinch)<sup>10+</sup>
off(type: "pinch", receiver?: Callback
<
[Pinch](js-apis-multimodalinput-gestureevent.md
/
#pinch)
>
): void
off(type: "pinch", receiver?: Callback
<
[Pinch](js-apis-multimodalinput-gestureevent.md#pinch)
>
): void
停止监听全局触控板捏合事件。
停止监听全局触控板捏合事件。
...
@@ -257,7 +257,7 @@ off(type: "pinch", receiver?: Callback<[Pinch](js-apis-multimodalinput-gestur
...
@@ -257,7 +257,7 @@ off(type: "pinch", receiver?: Callback<[Pinch](js-apis-multimodalinput-gestur
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------- | ---- | ------------------- |
| -------- | -------------------------- | ---- | ------------------- |
| type | string | 是 | 输入设备事件类型,取值“pinch”。 |
| type | string | 是 | 输入设备事件类型,取值“pinch”。 |
| receiver | Callback
<
[Pinch](js-apis-multimodalinput-gestureevent.md
/
#pinch)
>
| 否 | 需要取消监听的回调函数,若无此参数,则取消当前应用监听的所有回调函数。 |
| receiver | Callback
<
[Pinch](js-apis-multimodalinput-gestureevent.md#pinch)
>
| 否 | 需要取消监听的回调函数,若无此参数,则取消当前应用监听的所有回调函数。 |
**示例:**
**示例:**
...
@@ -293,7 +293,7 @@ try {
...
@@ -293,7 +293,7 @@ try {
## inputMonitor.on(threeFingersSwipe)<sup>10+</sup>
## inputMonitor.on(threeFingersSwipe)<sup>10+</sup>
on(type: "threeFingersSwipe", receiver: Callback
<
[ThreeFingersSwipe](js-apis-multimodalinput-gestureevent.md
/
#threefingersswipe)
>
): void
on(type: "threeFingersSwipe", receiver: Callback
<
[ThreeFingersSwipe](js-apis-multimodalinput-gestureevent.md#threefingersswipe)
>
): void
开始监听全局触控板三指滑动事件。
开始监听全局触控板三指滑动事件。
...
@@ -306,7 +306,7 @@ on(type: "threeFingersSwipe", receiver: Callback<[ThreeFingersSwipe](js-apis-
...
@@ -306,7 +306,7 @@ on(type: "threeFingersSwipe", receiver: Callback<[ThreeFingersSwipe](js-apis-
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------- | ---- | ------------------- |
| -------- | -------------------------- | ---- | ------------------- |
| type | string | 是 | 输入设备事件类型,取值“threeFingersSwipe”。 |
| type | string | 是 | 输入设备事件类型,取值“threeFingersSwipe”。 |
| receiver | Callback
<
[ThreeFingersSwipe](js-apis-multimodalinput-gestureevent.md
/
#threefingersswipe)
>
| 是 | 回调函数,异步上报三指滑动输入事件。 |
| receiver | Callback
<
[ThreeFingersSwipe](js-apis-multimodalinput-gestureevent.md#threefingersswipe)
>
| 是 | 回调函数,异步上报三指滑动输入事件。 |
**示例:**
**示例:**
...
@@ -323,7 +323,7 @@ try {
...
@@ -323,7 +323,7 @@ try {
## inputMonitor.off(threeFingersSwipe)<sup>10+</sup>
## inputMonitor.off(threeFingersSwipe)<sup>10+</sup>
off(type: "threeFingersSwipe", receiver?: Callback
<
[ThreeFingersSwipe](js-apis-multimodalinput-gestureevent.md
/
#threefingersswipe)
>
): void
off(type: "threeFingersSwipe", receiver?: Callback
<
[ThreeFingersSwipe](js-apis-multimodalinput-gestureevent.md#threefingersswipe)
>
): void
停止监听全局触控板三指滑动事件。
停止监听全局触控板三指滑动事件。
...
@@ -336,7 +336,7 @@ off(type: "threeFingersSwipe", receiver?: Callback<[ThreeFingersSwipe](js-api
...
@@ -336,7 +336,7 @@ off(type: "threeFingersSwipe", receiver?: Callback<[ThreeFingersSwipe](js-api
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------- | ---- | ------------------- |
| -------- | -------------------------- | ---- | ------------------- |
| type | string | 是 | 输入设备事件类型,取值“threeFingersSwipe”。 |
| type | string | 是 | 输入设备事件类型,取值“threeFingersSwipe”。 |
| receiver | Callback
<
[ThreeFingersSwipe](js-apis-multimodalinput-gestureevent.md
/
#threefingersswipe)
>
| 否 | 需要取消监听的回调函数,若无此参数,则取消当前应用监听的所有回调函数。 |
| receiver | Callback
<
[ThreeFingersSwipe](js-apis-multimodalinput-gestureevent.md#threefingersswipe)
>
| 否 | 需要取消监听的回调函数,若无此参数,则取消当前应用监听的所有回调函数。 |
**示例:**
**示例:**
...
@@ -372,7 +372,7 @@ try {
...
@@ -372,7 +372,7 @@ try {
## inputMonitor.on(fourFingersSwipe)<sup>10+</sup>
## inputMonitor.on(fourFingersSwipe)<sup>10+</sup>
on(type: "fourFingersSwipe", receiver: Callback
<
[FourFingersSwipe](js-apis-multimodalinput-gestureevent.md
/
#fourfingersswipe)
>
): void
on(type: "fourFingersSwipe", receiver: Callback
<
[FourFingersSwipe](js-apis-multimodalinput-gestureevent.md#fourfingersswipe)
>
): void
开始监听全局触控板四指滑动事件。
开始监听全局触控板四指滑动事件。
...
@@ -385,7 +385,7 @@ on(type: "fourFingersSwipe", receiver: Callback<[FourFingersSwipe](js-apis-mu
...
@@ -385,7 +385,7 @@ on(type: "fourFingersSwipe", receiver: Callback<[FourFingersSwipe](js-apis-mu
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------- | ---- | ------------------- |
| -------- | -------------------------- | ---- | ------------------- |
| type | string | 是 | 输入设备事件类型,取值“fourFingersSwipe”。 |
| type | string | 是 | 输入设备事件类型,取值“fourFingersSwipe”。 |
| receiver | Callback
<
[FourFingersSwipe](js-apis-multimodalinput-gestureevent.md
/
#fourfingersswipe)
>
| 是 | 回调函数,异步上报四指滑动输入事件。 |
| receiver | Callback
<
[FourFingersSwipe](js-apis-multimodalinput-gestureevent.md#fourfingersswipe)
>
| 是 | 回调函数,异步上报四指滑动输入事件。 |
**示例:**
**示例:**
...
@@ -402,7 +402,7 @@ try {
...
@@ -402,7 +402,7 @@ try {
## inputMonitor.off(fourFingersSwipe)<sup>10+</sup>
## inputMonitor.off(fourFingersSwipe)<sup>10+</sup>
off(type: "fourFingersSwipe", receiver?: Callback
<
[FourFingersSwipe](js-apis-multimodalinput-gestureevent.md
/
#fourfingersswipe)
>
): void
off(type: "fourFingersSwipe", receiver?: Callback
<
[FourFingersSwipe](js-apis-multimodalinput-gestureevent.md#fourfingersswipe)
>
): void
停止监听全局触控板四指滑动事件。
停止监听全局触控板四指滑动事件。
...
@@ -415,7 +415,7 @@ off(type: "fourFingersSwipe", receiver?: Callback<[FourFingersSwipe](js-apis-
...
@@ -415,7 +415,7 @@ off(type: "fourFingersSwipe", receiver?: Callback<[FourFingersSwipe](js-apis-
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------- | ---- | ------------------- |
| -------- | -------------------------- | ---- | ------------------- |
| type | string | 是 | 输入设备事件类型,取值“fourFingersSwipe”。 |
| type | string | 是 | 输入设备事件类型,取值“fourFingersSwipe”。 |
| receiver | Callback
<
[FourFingersSwipe](js-apis-multimodalinput-gestureevent.md
/
#fourfingersswipe)
>
| 否 | 需要取消监听的回调函数,若无此参数,则取消当前应用监听的所有回调函数。 |
| receiver | Callback
<
[FourFingersSwipe](js-apis-multimodalinput-gestureevent.md#fourfingersswipe)
>
| 否 | 需要取消监听的回调函数,若无此参数,则取消当前应用监听的所有回调函数。 |
**示例:**
**示例:**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录