canvas繪製實心圓形程式碼例項

admin發表於2017-02-10
本章節分享一段程式碼例項,它實現了繪製圓形效果。

並且這個圓形內部是填充的,需要的朋友可以做一下參考。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script type="text/javascript">
function drawCircle(id) {
  var canvas = document.getElementById(id);
  if (canvas) {
    var context = canvas.getContext("2d");
    context.fillStyle = "gray";
    context.strokeStyle = "black";
    context.fillRect(0, 0, 400, 400);
    context.beginPath();
    context.arc(100, 100, 50, 0, Math.PI * 2, true);
    context.closePath();
    context.fillStyle = "green";
    context.fill();
  }
  else {
    return;
  }
}
window.onload = function () {
  drawCircle("canvas");
}
</script>
</head>
<body>
<canvas id="canvas" width="400" style="background:red;" height="400"></canvas>
</body>
</html>

相關文章