CanvasRenderingContext2D.beginPath() - Web APIs 编辑
The CanvasRenderingContext2D
.beginPath()
method of the Canvas 2D API starts a new path by emptying the list of sub-paths. Call this method when you want to create a new path.
Note: To create a new sub-path, i.e., one matching the current canvas state, you can use CanvasRenderingContext2D.moveTo()
.
Syntax
void ctx.beginPath();
Examples
Creating distinct paths
This example creates two paths, each of which contains a single line.
HTML
<canvas id="canvas"></canvas>
JavaScript
The beginPath()
method is called before beginning each line, so that they may be drawn with different colors.
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
// First path
ctx.beginPath();
ctx.strokeStyle = 'blue';
ctx.moveTo(20, 20);
ctx.lineTo(200, 20);
ctx.stroke();
// Second path
ctx.beginPath();
ctx.strokeStyle = 'green';
ctx.moveTo(20, 20);
ctx.lineTo(120, 120);
ctx.stroke();
Result
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'CanvasRenderingContext2D.beginPath' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
- The interface defining this method:
CanvasRenderingContext2D
CanvasRenderingContext2D.closePath()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论