标签:doc can contex als context etc get htm 八卦图
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<canvas id="canvas" width="800px" height="800px"></canvas>
<script type="text/javascript">
var canvas = document.getElementById("canvas");
var context = canvas.getContext("2d");
context.beginPath();
context.arc(200,200,200,0,2*Math.PI,false);
context.closePath();
context.stroke()
context.beginPath();
context.arc(200,200,200,0.5*Math.PI,1.5*Math.PI,false);
context.closePath();
context.fillStyle = "#000";
context.fill()
context.beginPath();
context.arc(200,100,100,0,1.5*Math.PI,false);
context.closePath();
context.fillStyle = "#fff";
context.fill()
context.beginPath();
context.arc(200,300,100,0.5*Math.PI,1.5*Math.PI,true);
context.closePath();
context.fillStyle = "#000";
context.fill()
context.beginPath();
context.arc(200,100,50,0,2*Math.PI,false);
context.closePath();
context.fillStyle = "#000";
context.fill()
context.beginPath();
context.arc(200,300,50,0,2*Math.PI,false);
context.closePath();
context.fillStyle = "#fff";
context.fill()
</script>
</body>
</html>
标签:doc can contex als context etc get htm 八卦图
原文地址:https://www.cnblogs.com/3542446186qq/p/10098581.html