canvas實現的旋轉太極圖效果

admin發表於2017-02-13
分享一段程式碼例項,它使用canvas實現了旋轉的太極圖效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#canvas1{ background:white ;}
</style>
<script>
window.onload = function() {
 
  var oC = document.getElementById('canvas1');
  var oGC = oC.getContext('2d');
  var num = 1;
 
  oGC.translate(300.5, 300.5);
  setInterval(function() {
 
    oGC.save();
    oGC.clearRect(0, 0, oC.width, oC.height);
    num++
    oGC.rotate(-num * Math.PI / 180);
    oGC.translate(-300.5, -300.5);
 
    //左半邊黑色半圓
    oGC.beginPath();
    oGC.fillStyle = 'black';
    oGC.arc(300.5, 300.5, 200, 90 * Math.PI / 180, -90 * Math.PI / 180, false);
    oGC.fill();
    oGC.stroke();
    oGC.closePath();
 
    //右半邊白色半圓
    oGC.beginPath();
    oGC.fillStyle = 'white';
    oGC.arc(300.5, 300.5, 200, -90 * Math.PI / 180, 90 * Math.PI / 180, false);
    oGC.fill();
    oGC.stroke();
    oGC.closePath();
 
    //小白半圓
    oGC.beginPath();
    oGC.fillStyle = 'white';
    oGC.arc(301.5, 200.5, 100, 90 * Math.PI / 180, -90 * Math.PI / 180, false);
    oGC.fill();
    oGC.stroke();
    oGC.closePath();
 
    //小黑半圓
    oGC.beginPath();
    oGC.fillStyle = 'black';
    oGC.translate(0, 200);
    oGC.arc(300.5, 200.5, 100, -90 * Math.PI / 180, 90 * Math.PI / 180, false);
    oGC.fill();
    oGC.closePath();
    oGC.stroke();
 
    //中心小黑圓
    oGC.beginPath();
    oGC.fillStyle = 'black';
    oGC.translate(0, -200);
    oGC.arc(300.5, 200.5, 20, 0, 360 * Math.PI / 180, false);
    oGC.fill();
    oGC.closePath();
    oGC.stroke();
 
    //中心小白圓
    oGC.beginPath();
    oGC.fillStyle = 'white';
    oGC.translate(0, 200);
    oGC.arc(300.5, 200.5, 20, 0, 360 * Math.PI / 180, false);
    oGC.fill();
    oGC.closePath();
    oGC.stroke();
 
    oGC.restore();
  }, 30);
}
</script>
</head>
<body>
<canvas id="canvas1" width="600" height="600"></canvas>
</body>
</html>

相關文章