這里給大家分享的是一個(gè)學(xué)習(xí)canvas的時(shí)候做的畫(huà)空心圓與實(shí)心圓的練習(xí)題,非常簡(jiǎn)單。
<canvas id="canvas" width="500" height="500" style="background-color: yellow;"></canvas>
var canvas=document.getElementById("canvas");
var cxt=canvas.getContext("2d");
//畫(huà)一個(gè)空心圓
cxt.beginPath();
cxt.arc(200,200,50,0,360,false);
cxt.lineWidth=5;
cxt.strokeStyle="green";
cxt.stroke();//畫(huà)空心圓
cxt.closePath();
//畫(huà)一個(gè)實(shí)心圓
cxt.beginPath();
cxt.arc(200,100,50,0,360,false);
cxt.fillStyle="red";//填充顏色,默認(rèn)是黑色
cxt.fill();//畫(huà)實(shí)心圓
cxt.closePath();
//空心和實(shí)心的組合
cxt.beginPath();
cxt.arc(300,300,50,0,360,false);
cxt.fillStyle="red";
cxt.fill();
cxt.strokeStyle="green";
cxt.stroke();
cxt.closePath();