canvas實現的旋轉的太極圖效果程式碼例項

admin發表於2017-02-17

分享一段程式碼例項,它利用canvas實現了旋轉的太極圖效果。

並且太極圖中間有一條貫穿的細線,程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
</head>
<body>
<canvas id="canvas" width="500" height="500"></canvas>
<script type="text/javascript">
var oC = document.getElementById("canvas");
var ctx = oC.getContext("2d");
 
ctx.translate(250, 250);
 
function autoplay() {
  // 左邊
  ctx.beginPath();
  ctx.fillStyle = "black";
  ctx.arc(0, 0, 200, Math.PI * 0.5, Math.PI * 1.5, false);
  ctx.fill();
  ctx.closePath();
 
 
  // 右邊
  ctx.beginPath();
  ctx.fillStyle = "white";
  ctx.strokeStyle = "black";
  ctx.arc(0, 0, 200, Math.PI * 1.5, Math.PI * 0.5, false);
  ctx.fill();
  ctx.stroke();
  ctx.closePath();
  // 小大的
  ctx.beginPath();
  ctx.fillStyle = "white";
  ctx.arc(0, -100, 100, Math.PI * 0.5, Math.PI * 1.5, false);
  ctx.fill();
  ctx.closePath();
 
  ctx.beginPath();
  ctx.fillStyle = "black";
  ctx.arc(0, 100, 100, Math.PI * 1.5, Math.PI * 0.5, false);
  ctx.fill();
  //小小的
  ctx.beginPath();
  ctx.fillStyle = "white";
  ctx.arc(0, 100, 35, 0, Math.PI * 2, false);
  ctx.fill();
  ctx.closePath();
 
  ctx.beginPath();
  ctx.fillStyle = "black";
  ctx.arc(0, -100, 35, 0, Math.PI * 2, false);
  ctx.fill();
  ctx.closePath();
}
 
var deg = 0;
function move() {
  deg = Math.PI / 6;
  ctx.clearRect(-250, -250, 500, 500);
  ctx.rotate(Math.PI / 100);
  autoplay();
  window.requestAnimationFrame(move);
}
move();
</script>
</body>
</html>

相關文章