Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yin1999 committed Oct 20, 2024
1 parent 68293b0 commit 9f4da98
Showing 1 changed file with 24 additions and 30 deletions.
54 changes: 24 additions & 30 deletions files/zh-cn/web/api/document/createtouch/index.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
---
title: "Document: createTouch() 方法"
short-title: createTouch()
title: Document:createTouch() 方法
slug: Web/API/Document/createTouch
page-type: web-api-instance-method
status:
- deprecated
- non-standard
browser-compat: api.Document.createTouch
l10n:
sourceCommit: be8f7f155a48e11b30c240f8731afb1845f85378
---

{{APIRef("DOM")}}{{Deprecated_Header}}{{Non-standard_header}}

The **`Document.createTouch()`**方法创建并返回一个新的{{DOMxRef("Touch")}}对象。
**`Document.createTouch()`** 方法创建并返回一个新的 {{DOMxRef("Touch")}} 对象。

> [!NOTE]
> 建议使用 {{domxref("TouchEvent.TouchEvent", "TouchEvent()")}} 构造函数。
Expand All @@ -28,48 +24,46 @@ createTouch(view, target, identifier, pageX, pageY, screenX, screenY)
> 所有参数都是可选的。
- `view`
- : 发生触摸的{{DOMxRef("window")}}。
- : 发生触摸的 {{DOMxRef("window")}}。
- `target`
- : 触摸的{{DOMxRef("EventTarget")}}。
- : 触摸的 {{DOMxRef("EventTarget")}}。
- `identifier`
- : {{DOMxRef("Touch.identifier")}}的值。
- : {{DOMxRef("Touch.identifier")}} 的值。
- `pageX`
- : {{DOMxRef("Touch.pageX")}}的值。
- : {{DOMxRef("Touch.pageX")}} 的值。
- `pageY`
- : {{DOMxRef("Touch.pageY")}}的值。
- : {{DOMxRef("Touch.pageY")}} 的值。
- `screenX`
- : {{DOMxRef("Touch.screenX")}}的值。
- : {{DOMxRef("Touch.screenX")}} 的值。
- `screenY`
- : {{DOMxRef("Touch.screenY")}}的值。
- : {{DOMxRef("Touch.screenY")}} 的值。

> [!NOTE]
> 该方法的先前版本包括以下附加参数,
> 但这些参数未包含在下面列出的任何标准中。
> 因此,这些参数应被视为不推荐使用。
> 该方法的先前版本包括以下附加参数,但这些参数未包含在下面列出的任何标准中。因此,这些参数应被视为已弃用且不应再被使用。
- `clientX`
- : {{DOMxRef("Touch.clientX")}}的值。
- : {{DOMxRef("Touch.clientX")}} 的值。
- `clientY`
- : {{DOMxRef("Touch.clientY")}}的值。
- : {{DOMxRef("Touch.clientY")}} 的值。
- `radiusX`
- : {{DOMxRef("Touch.radiusX")}}的值。
- : {{DOMxRef("Touch.radiusX")}} 的值。
- `radiusY`
- : {{DOMxRef("Touch.radiusY")}}的值。
- : {{DOMxRef("Touch.radiusY")}} 的值。
- `rotationAngle`
- : {{DOMxRef("Touch.rotationAngle")}}的值。
- : {{DOMxRef("Touch.rotationAngle")}} 的值。
- `force`
- : {{DOMxRef("Touch.force")}}的值。
- : {{DOMxRef("Touch.force")}} 的值。

### 返回值

- `touch`
- : 按照输入参数的描述配置的{{DOMxRef("Touch")}}对象。
- : 按照输入参数的描述配置的 {{DOMxRef("Touch")}} 对象。

## 例子
## 示例

此示例说明了如何使用`Document.createTouch()`方法创建{{DOMxRef("Touch")}}对象。
此示例说明了如何使用 `Document.createTouch()` 方法创建 {{DOMxRef("Touch")}} 对象。

在下面的代码片段中,为`target`元素创建了两个{{DOMxRef("Touch")}}对象。
在下面的代码片段中,为 `target` 元素创建了两个 {{DOMxRef("Touch")}} 对象。

```js
const target = document.getElementById("target");
Expand All @@ -80,13 +74,13 @@ const touch2 = document.createTouch(window, target, 2, 25, 30, 45, 50);

## 规范

此功能不是任何当前规范的一部分。它不再有望成为标准。
此特性属于任何当前的规范。它不再有望成为标准。

## 浏览器兼容性

{{Compat}}

## 相关阅读
## 参见

- [触摸事件](/zh-CN/docs/Web/API/Touch_events)
- {{DOMxRef("TouchList")}}
Expand Down

0 comments on commit 9f4da98

Please sign in to comment.