欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

canvas制作八卦图源码

程序员文章站 2022-05-30 08:18:08
...

 源码如下:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <canvas id="canvas" width="400" height="400" style="background:#E1E1EF"></canvas>
  <script>
    let ctx = document.getElementById('canvas').getContext('2d');
    function draw() {
      ctx.clearRect(0, 0, 400, 400);
      ctx.strokeRect(0, 0, 400, 400);
      ctx.fillStyle = "#000000";
      ctx.beginPath();
      ctx.arc(200, 200, 200, Math.PI * .5, Math.PI * 1.5, true);
      ctx.closePath();
      ctx.fill();
      ctx.fillStyle = "#ffffff";
      ctx.beginPath();
      ctx.arc(200, 200, 200, Math.PI * 1.5, Math.PI * 2.5, true);
      ctx.closePath();
      ctx.fill();
      ctx.fillStyle = "#000000";
      ctx.beginPath();
      ctx.arc(200, 100, 100, 0, Math.PI * 2, true);
      ctx.closePath();
      ctx.fill();
      ctx.fillStyle = "#ffffff";
      ctx.beginPath();
      ctx.arc(200, 300, 100, 0, Math.PI * 2, true);
      ctx.closePath();
      ctx.fill();
      ctx.fillStyle = "#ffffff";
      ctx.beginPath();
      ctx.arc(200, 100, 5, 0, Math.PI * 2, true);
      ctx.closePath();
      ctx.fill();
      ctx.fillStyle = "#000000";
      ctx.beginPath();
      ctx.arc(200, 300, 5, 0, Math.PI * 2, true);
      ctx.closePath();
      ctx.fill();
    }
    draw();
  </script>
</body>
</html>

 

效果图如下:

canvas制作八卦图源码