Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 13th, 2012  |  syntax: JavaScript  |  size: 0.22 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function initialise() {
  2.         var canvas = document.getElementById('canvas');
  3.         var ctx = canvas.getContext('2d'); //ctx = context
  4. }
  5.  
  6. function draw() {
  7.         ctx.clearRect(0,0,1000,1000);
  8.         ctx.fillRect(0,0,20,20);
  9. }
  10.  
  11. initialise();