Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
yin1999 committed Jul 30, 2024
1 parent a91a796 commit 3eac0de
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions files/zh-cn/web/api/canvasrenderingcontext2d/moveto/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ moveTo(x, y)
### 参数

- `x`
- : 点的 x 轴。
- : 点的 x 轴(横)坐标
- `y`
- : 点的 y 轴。
- : 点的 y 轴(纵)坐标

### 返回值

Expand All @@ -30,7 +30,7 @@ moveTo(x, y)

### 绘制多条子路径

这个例子使用了 `moveTo()` 方法在单个路径中创建了两个子路径。然后,这两个子路径通过单个 `stroke()` 方法调用进行渲染。
此示例使用 `moveTo()` 方法在单个路径中创建了两条子路径。然后,这两条子路径通过单个 `stroke()` 方法调用进行渲染。

```html
<canvas id="canvas"></canvas>
Expand All @@ -45,9 +45,9 @@ const canvas = document.getElementById("canvas");
const ctx = canvas.getContext("2d");

ctx.beginPath();
ctx.moveTo(50, 50); // 开始第一个子路径
ctx.moveTo(50, 50); // 开始第一条子路径
ctx.lineTo(200, 50);
ctx.moveTo(50, 90); // 开始第二个子路径
ctx.moveTo(50, 90); // 开始第二条子路径
ctx.lineTo(280, 120);
ctx.stroke();
```
Expand Down

0 comments on commit 3eac0de

Please sign in to comment.