Skip to content

Instantly share code, notes, and snippets.

@gab-aquino
Forked from ser2708/app.js
Created October 10, 2012 12:31
Show Gist options
  • Save gab-aquino/3865324 to your computer and use it in GitHub Desktop.
Save gab-aquino/3865324 to your computer and use it in GitHub Desktop.
canvas
$(function(){
var canvas = document.getElementById('canvas');
ctx = canvas.getContext('2d');
ctx.rotate(.1);
ctx.fillRect(100,30,200,200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment