<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>canvas 面繪制</title>
<style>
#canvas {
background-color: #f9f9f9;
}
</style>
</head>
<body>
<canvas id="canvas">瀏覽器不支持 canvas </canvas>
</body>
<script>
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
canvas.height = 500;
canvas.width = 500;
// 矩形:紅色填充、綠色描邊
function drawRect(x, y, width, height) {
ctx.fillStyle = "red";
ctx.strokeStyle = "green";
ctx.fillRect(x, y, width, height);
ctx.strokeRect(x, y, width, height);
}
// 三角形:黃色填充、粉色描邊
const points = [
{ x: 300, y: 100 },
{ x: 200, y: 200 },
{ x: 400, y: 200 },
];
function drawTria() {
ctx.fillStyle = "yellow";
ctx.strokeStyle = "pink";
ctx.beginPath();
ctx.moveTo(points[0].x, points[0].y);
ctx.lineTo(points[1].x, points[1].y);
ctx.lineTo(points[2].x, points[2].y);
ctx.closePath();
ctx.fill();
ctx.stroke();
}
// 圓形:綠填充、紅色描邊
function drawCircle(
x,
y,
radius,
startAngle = 0,
endAngle = Math.PI * 2,
anticlockwise = false
) {
ctx.fillStyle = "green";
ctx.strokeStyle = "red";
ctx.beginPath();
// ctx.arc(圓心-x, 圓心-y, 半徑-radius, 開始角度-startAngle, 結(jié)束角度-endAngle , anticlockwise 逆時(shí)針);
ctx.arc(x, y, radius, startAngle, endAngle, anticlockwise);
ctx.fill();
ctx.stroke();
}
drawRect(50, 50, 100, 50);
drawTria(points);
drawCircle(100, 200, 50);
</script>
</html>
canvas 面 繪制
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
相關(guān)閱讀更多精彩內(nèi)容
- 解決方案:galaxy s4的webview顯示canvas的時(shí)候,有兩個(gè)條件必須滿足:1,canvas外層的di...
- 原生打印香嗎?當(dāng)然香啊,window.print() 頁頭頁尾頁碼統(tǒng)統(tǒng)有,還能用 @media print 設(shè)置打...
- 說在前面 Canvas中繪制組件: 參數(shù) scrollregion指定 Canvas 可以被滾動(dòng)的范圍,該選項(xiàng)的值...
- 1、定創(chuàng)建canvas畫布 2、繪制直線canvas繪圖是基于狀態(tài)的,然后在調(diào)用方法來繪圖 效果圖: 3、繪制三角...