白开水

海阔凭鱼跃,天高任鸟飞!

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
<html>
 <head>
  <script type="application/x-javascript">
    function draw() {
      var canvas = document.getElementById("canvas");
      if (canvas.getContext) {
        var ctx = canvas.getContext("2d");

        ctx.fillStyle = "rgb(200,0,0)";
        ctx.fillRect (10, 10, 55, 50);

        ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
        ctx.fillRect (30, 30, 55, 50);
      }
    }
  </script>
 </head>
 <body onload="draw();">
   <canvas id="canvas" width="150" height="150"></canvas>
 </body>
</html>
posted on 2012-08-07 14:41  baikaishui1989  阅读(271)  评论(0编辑  收藏  举报