当前位置:   article > 正文

html5中怎么使用canvas画空心圆与实心圆

canvas画空心圆

这篇文章主要介绍“html5中怎么使用canvas画空心圆与实心圆”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“html5中怎么使用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. cxt.beginPath();
  18. cxt.arc(300,300,50,0,360,false);
  19. cxt.fillStyle="red";
  20. cxt.fill();
  21. cxt.strokeStyle="green";
  22. cxt.stroke();
  23. cxt.closePath();

转载于:html5中怎么使用canvas画空心圆与实心圆 - web开发 - 亿速云 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/96950
推荐阅读
相关标签
  

闽ICP备14008679号