Created
September 8, 2013 02:33
-
-
Save 7gano/6481393 to your computer and use it in GitHub Desktop.
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 canvas = document.createElement('canvas'); | |
canvas.width = 768; | |
canvas.height = 1024; | |
document.body.appendChild(canvas); | |
var context = canvas.getContext('2d'); | |
context.fillStyle = 'red'; | |
context.fillRect(100,100,100,100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment