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>
效果图如下:
上一篇: 生活中幽默往回开两块吧
下一篇: 阿里云OS 与 Android 之争升级