太极八卦图

Posted 3542446186qq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了太极八卦图相关的知识,希望对你有一定的参考价值。

<!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>


















































以上是关于太极八卦图的主要内容,如果未能解决你的问题,请参考以下文章

使用CSS3生成一个会旋转的太极八卦图

web实现太极八卦图旋转动画定位角度坐标htmlcssJavaScriptanimation

八卦旋转

这样好用的ReactiveCocoa,根本停不下来

易经简述

canvas-八卦图和时钟实现