canvas繪製圓形框效果不填充內部

admin發表於2018-07-16

本章節分享一段程式碼例項,它實現了繪製圓形框的效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
</head>
<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>
<body>
<canvas id="can" width="400px" height="300px"></canvas>
</body>
</html>

相關文章