canvas 元素用于在网页上绘制图形。
什么是Canvas?
HTML 5 的canvas元素使用JavaScript 在网页上绘制图像。
画布是一个矩形区域,您可以控制其每一像素。
canvas 拥有多种绘制路径、矩形、圆形、字符以及添加图像的方法。
创建Canvas元素
向HTML 5 页面添加canvas元素,规定元素的id、宽度和高度:
<canvas id="myCanvas" width="200" height="100"></canvas>
通过JavaScript 来绘制
canvas元素本身是没有绘图能力的。所有的绘制工作必须在JavaScript 内部完成:
<script type="text/javascript"> var c=document.getElementById("myCanvas"); var cxt=c.getContext("2d"); cxt.fillStyle="#FF0000"; cxt.fillRect(0,0,150,75); </script>
JavaScript 使用id 来寻找canvas 元素:
var c=document.getElementById("myCanvas");
然后,创建context 对象:
var cxt=c.getContext("2d");
getContext("2d") 对象是内建的HTML 5 对象,拥有多种绘制路径、矩形、圆形、字符以及添加图像的方法。
实例:把鼠标悬停在矩形上可以看到坐标, 亲自试一试吧,代码如下:
<!DOCTYPE HTML> <html> <head> <style type="text/css"> body { margin: 0px; font-size: 70%; font-family: verdana, helvetica, arial, sans-serif; } #coordiv { float: left; width: 199px; height: 99px; border: 1px solid #c3c3c3 } </style> <script type="text/javascript"> function cnvs_getCoordinates(e) { x=e.clientX; y=e.clientY; document.getElementById("xycoordinates").innerHTML="Coordinates: (" + x + "," + y + ")"; } function cnvs_clearCoordinates() { document.getElementById("xycoordinates").innerHTML=""; } </script> </head> <body> <p>把鼠标悬停在下面的矩形上可以看到坐标:</p> <div id="coordiv" onmousemove="cnvs_getCoordinates(event)" onmouseout="cnvs_clearCoordinates()"></div> <div id="xycoordinates"></div> </body> </html>
以上就是HTML5中的Canvas元素的内容,更多相关内容请关注PHP中文网(www.php.cn)!