赞
踩
这篇文章主要介绍“html5中怎么使用canvas画空心圆与实心圆”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“html5中怎么使用canvas画空心圆与实心圆”文章能帮助大家解决问题。
<canvas id="canvas" width="500" height="500" style="background-color: yellow;"></canvas>
代码如下:
-
-
- var canvas=document.getElementById("canvas");
-
- var cxt=canvas.getContext("2d");
-
- //画一个空心圆
-
- cxt.beginPath();
-
- cxt.arc(200,200,50,0,360,false);
-
- cxt.lineWidth=5;
-
- cxt.strokeStyle="green";
-
- cxt.stroke();//画空心圆
-
- cxt.closePath();
-
- //画一个实心圆
-
- cxt.beginPath();
-
- cxt.arc(200,100,50,0,360,false);
-
- cxt.fillStyle="red";//填充颜色,默认是黑色
-
- cxt.fill();//画实心圆
-
- cxt.closePath();
-
- //空心和实心的组合
-
- cxt.beginPath();
-
- cxt.arc(300,300,50,0,360,false);
-
- cxt.fillStyle="red";
-
- cxt.fill();
-
- cxt.strokeStyle="green";
-
- cxt.stroke();
-
- cxt.closePath();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。