首页 > 代码库 > canvas之画圆
canvas之画圆
<canvas id="canvas" width="500" height="500" style="background-color: yellow;"></canvas>
1 var canvas=document.getElementById("canvas"); 2 var cxt=canvas.getContext("2d"); 3 //画一个空心圆 4 cxt.beginPath(); 5 cxt.arc(200,200,50,0,360,false); 6 cxt.lineWidth=5; 7 cxt.strokeStyle="green"; 8 cxt.stroke();//画空心圆 9 cxt.closePath();10 //画一个实心圆11 cxt.beginPath();12 cxt.arc(200,100,50,0,360,false);13 cxt.fillStyle="red";//填充颜色,默认是黑色14 cxt.fill();//画实心圆15 cxt.closePath();16 17 //空心和实心的组合18 cxt.beginPath();19 cxt.arc(300,300,50,0,360,false);20 cxt.fillStyle="red";21 cxt.fill();22 cxt.strokeStyle="green";23 cxt.stroke();24 cxt.closePath();
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。