📜  javascript canvas - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:48.937000             🧑  作者: Mango

代码示例2
#this code creates a circle within a canvas that must be created in HTML
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.arc(95, 50, 40, 0, 2 * Math.PI);
ctx.stroke();