Skip to content

Instantly share code, notes, and snippets.

@7gano
Created September 8, 2013 02:33
Show Gist options
  • Save 7gano/6481393 to your computer and use it in GitHub Desktop.
Save 7gano/6481393 to your computer and use it in GitHub Desktop.
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