案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
6
Your browser does not support the HTML5 canvas tag.</canvas>
7
8
<script>
9
10
var c=document.getElementById("myCanvas");
11
var ctx=c.getContext("2d");
12
ctx.beginPath();
13
ctx.moveTo(20,20);
14
ctx.bezierCurveTo(20,100,200,100,200,20);
15
ctx.stroke();
16
17
</script> 
18
19
</body>
20
</html>
21