What I share with you here is an exercise on drawing hollow circles and solid circles that I did when I was learning canvas. It is very simple.
var canvas=document.getElementById("canvas");
var cxt= canvas.getContext("2d");
//Draw a hollow circle
cxt.beginPath();
cxt.arc(200,200,50,0,360,false);
cxt.lineWidth= 5;
cxt.strokeStyle="green";
cxt.stroke();//Draw a hollow circle
cxt.closePath();
//Draw a solid circle
cxt. beginPath();
cxt.arc(200,100,50,0,360,false);
cxt.fillStyle="red";//Fill color, the default is black
cxt.fill();// Draw a solid circle
cxt.closePath();
//Combination of hollow and solid
cxt.beginPath();
cxt.arc(300,300,50,0,360,false);
cxt.fillStyle="red";
cxt.fill();
cxt.strokeStyle="green";
cxt.stroke();
cxt.closePath();
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn