canvas繪製圓環效果程式碼例項

admin發表於2017-02-21

分享一段程式碼例項,它利用canvas繪製了一個圓環。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
canvas {
  border: dashed 2px #CCC;
}
</style>
<script type="text/javascript">
function $$(id) {
    return document.getElementById(id);
}
function pageLoad() {
  var can = $$('can');
  var cans = can.getContext('2d');
  cans.beginPath();
  cans.arc(200, 150, 100, 0, Math.PI * 2, false);
  cans.closePath();
  cans.lineWidth = 5;
  cans.strokeStyle = 'red';
  cans.stroke();
}
window.onload = function () {
  pageLoad();
}
</script>
</head>
<body>
<canvas id="can" width="400" height="300"></canvas>
</body>
</html>


相關文章