首页 > 代码库 > 【canvas】半圆和半弧——首尾是否绘制连接

【canvas】半圆和半弧——首尾是否绘制连接

<body>
<canvas id="c1" style="border:1px solid red;display:block;margin:0 auto;"></canvas>
</body>
<script>
window.onload=function(){
var canvas=document.getElementById(‘c1‘);
var context=canvas.getContext(‘2d‘);

canvas.width=‘800‘
canvas.height=‘800‘

context.beginPath();
context.arc(400,400,200,0,0.5*Math.PI,true);
context.closePath();
context.strokeStyle=‘blue‘;
context.stroke();
}
</script>
</html>

技术分享

 

<body>
<canvas id="c1" style="border:1px solid red;display:block;margin:0 auto;"></canvas>
</body>
<script>
window.onload=function(){
var canvas=document.getElementById(‘c1‘);
var context=canvas.getContext(‘2d‘);

canvas.width=‘800‘
canvas.height=‘800‘

context.beginPath();
context.arc(400,400,200,0,0.5*Math.PI,true);
context.strokeStyle=‘blue‘;
context.stroke();
context.closePath();
}
</script>
</html>

技术分享

 

【canvas】半圆和半弧——首尾是否绘制连接