Created
September 26, 2012 00:45
-
-
Save geovanerocha/3785343 to your computer and use it in GitHub Desktop.
Simple HTML5 Canvas Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var c = document.getElementById("myCanvas"); | |
var ctx = c.getContext("2d"); | |
ctx.fillStyle = "#FF0000"; | |
ctx.fillRect(0,0,150,75); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<canvas id="myCanvas" width="200" height="100" | |
style="border:1px solid #000000;"> | |
</canvas> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment