gpt4 book ai didi

javascript - 如何使用 JavaScript 在 HTML5 Canvas 中绘制圆圈?

转载 作者:技术小花猫 更新时间:2023-10-29 12:07:47 24 4
gpt4 key购买 nike

如何使用最少的 JavaScript 代码在 HTML5 Canvas 中绘制一个简单的圆圈?

最佳答案

以下是如何在 HTML5 中使用 JavaScript 绘制圆:

const canvas = document.getElementById('myCanvas');
const context = canvas.getContext('2d');
const centerX = canvas.width / 2;
const centerY = canvas.height / 2;
const radius = 70;

context.beginPath();
context.arc(centerX, centerY, radius, 0, 2 * Math.PI, false);
context.fillStyle = 'green';
context.fill();
context.lineWidth = 5;
context.strokeStyle = '#003300';
context.stroke();
body {
margin: 0;
padding: 0;
}
<canvas id="myCanvas" width="578" height="200"></canvas>

关于javascript - 如何使用 JavaScript 在 HTML5 Canvas 中绘制圆圈?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25095548/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com