js+canvas简单绘制圆圈的⽅法本⽂实例讲述了js+canvas简单绘制圆圈的⽅法。分享给⼤家供⼤家参考,具体如下:
运⾏效果截图如下:
具体代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="/1999/xhtml">
<head>
<title>canvas画圆圈</title>
<script type="text/javascript" >
function drawCircle(id){
var canvas = ElementById(id);
if(canvas ) {
var context = Context("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;
}
}
drawCircle("canvas");
}
</script>
</head>
<body>
js制作简单的焦点图效果<canvas id="canvas" width="400" height="400"></canvas>
<hr />
</body>
</html>
更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《》及《》
希望本⽂所述对⼤家JavaScript程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。