Skip to content

Instantly share code, notes, and snippets.

@prisoner
Created July 28, 2011 17:42
Show Gist options
  • Save prisoner/1112077 to your computer and use it in GitHub Desktop.
Save prisoner/1112077 to your computer and use it in GitHub Desktop.
HTML5 Canvas Sample
<!DOCTYPE HTML>
<html>
<head>
<title>HTML5 Canvas Sample</title>
<!--[if IE]><script src="excanvas.js"></script><![endif]-->
<script>
//<![CDATA[
function drawRect() {
var canvas = document.getElementById("canvas");
var context = canvas.getContext("2d");
context.strokeRect(50, 50, 120, 80);
}
//]]>
</script>
</head>
<body onload="drawRect();">
<canvas id="canvas" width="500" height="500">
这是反馈信息
</canvas>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment