HTML5之Canvas绘图——半圆与圆弧的不同画法
昨天写的博客中,写到了HTML5中使⽤Canvas画圆的⽅法,昨晚试了⼀下画⼀个笑脸,其实挺简单的,就是两个实⼼圆做眼睛,⼀个半圆弧做嘴,这个简单的笑脸就完成了,但是在做嘴的时候开始出现了问题:
<!DOCTYPE html>
html实现用户注册登录代码
<html>
<head>
<meta charset="utf-8">
<title>Canvas</title>
</head>
<style type="text/css">
body{margin:20px auto; padding:0; width:800px; }
canvas{border:dashed 2px #CCC}
</style>
<script type="text/javascript">
function $$(id){
ElementById(id);
}
function pageLoad(){
var can = $$('can');
var cans = Context('2d');
cans.beginPath();
cans.arc(400,300,200,0,Math.PI,1);
cans.closePath();
cans.strokeStyle = 'red';
cans.lineWidth = 10;
cans.stroke();
}
</script>
<body onload="pageLoad();">
<canvas id="can" width="800px" height="600px"></canvas>
</body>
</html>
这⼏天正在看⼀本书——陶国荣的《HTML5实战》,这本书⾥的⼀个笑脸实例让我顿悟,⽅法更是简单的让我汗颜啊~~~
先看效果,再上代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Canvas</title>
</head>
<style type="text/css">
body{margin:20px auto; padding:0; width:800px; }
canvas{border:dashed 2px #CCC}
</style>
<script type="text/javascript">
function $$(id){
ElementById(id);
}
function pageLoad(){
var can = $$('can');
var cans = Context('2d');
cans.beginPath();
cans.arc(400,300,200,0,Math.PI,1);
cans.strokeStyle = 'red';
cans.lineWidth = 10;
cans.stroke();
cans.closePath();
}
</script>
<body onload="pageLoad();">
<canvas id="can" width="800px" height="600px"></canvas>
</body>
</html>
OK啦,这样就可以实现我那个的笑脸的嘴了~~

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