六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 128|回复: 0

IE支持canvas标签

[复制链接]

升级  56%

8

主题

8

主题

8

主题

童生

Rank: 1

积分
28
 楼主| 发表于 2012-12-22 20:45:48 | 显示全部楼层 |阅读模式
<div id="cnblogs_post_body">使用excanvas.js可以让IE支持Html5的canvas标签,具体用法如下:
<div class="cnblogs_code"> 1 <html> 2 <head> 3     <title></title> 4     <!--[if IE]> 5 <script type="text/javascript" src="excanvas.js" ></script> 6     <![endif]--> 7 </head> 8     <body> 9         <canvas id="canvas" width="400" height="300"></canvas>10         <script type="text/javascript">11             window.onload = function() {12                 var ctx = document.getElementById("canvas").getContext("2d");13                 ctx.fillRect(10, 10, 20, 20);14             };15         </script>16     </body>17 </html>
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表