畫布beginPath()方法用於啟動路徑或重置當前路徑。 moveTo(),lineTo(),quadricCurveTo(),bezierCurveTo(),arcTo()和arc()方法用於創建路徑。此外,stroke()方法用於在畫布上繪製路徑。
用法:
context.beginPath();
範例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML canvas beginPath() Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>HTML canvas beginPath() Property</h2>
<canvas id="GFG" width="500" height="300"></canvas>
<script>
var GFG = document.getElementById("GFG");
var context = GFG.getContext("2d");
// Create a path
context.beginPath();
// Set the path width
context.lineWidth = "8";
// Set the path color
context.strokeStyle = "green";
context.moveTo(100, 250);
context.lineTo(150, 50);
context.lineTo(250, 250);
context.stroke();
context.beginPath();
</script>
</body>
</html>
輸出:
範例2:
<!DOCTYPE html>
<html>
<head>
<title>
HTML canvas beginPath() Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>HTML canvas beginPath() Property</h2>
<canvas id="GFG" width="500" height="300"></canvas>
<script>
var GFG = document.getElementById("GFG");
var context = GFG.getContext("2d");
// Set the path width
context.lineWidth = 5;
// Create path
context.beginPath();
context.moveTo(100, 20);
context.lineTo(230, 200);
// Set path color
context.strokeStyle = 'green';
context.stroke();
// Create another path
context.beginPath();
context.moveTo(230, 200);
context.quadraticCurveTo(230, 200, 260, 100);
// Set path color
context.strokeStyle = 'blue';
context.stroke();
// Create another path
context.beginPath();
context.moveTo(260, 100);
context.bezierCurveTo(290, -40, 300, 190, 400, 150);
// Set path color
context.strokeStyle = 'orange';
context.stroke();
context.closePath();
</script>
</body>
</html>
支持的瀏覽器:下麵列出了HTML canvas beginPath()方法支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 9.0
- 火狐瀏覽器
- 蘋果瀏覽器
- Opera
相關用法
- HTML canvas arc()用法及代碼示例
- HTML canvas createPattern()用法及代碼示例
- HTML canvas fillText()用法及代碼示例
- HTML canvas fillRect()用法及代碼示例
- HTML canvas strokeRect()用法及代碼示例
- HTML canvas measureText()用法及代碼示例
- HTML canvas lineTo()用法及代碼示例
- HTML canvas clearRect()用法及代碼示例
- HTML canvas createImageData()用法及代碼示例
- HTML canvas fill()用法及代碼示例
- HTML canvas stroke()用法及代碼示例
- HTML canvas rect()用法及代碼示例
- HTML canvas closePath()用法及代碼示例
- HTML canvas scale()用法及代碼示例
- HTML canvas arcTo()用法及代碼示例
注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 HTML | canvas beginPath() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。