Skip to content

Instantly share code, notes, and snippets.

@ser2708
Created October 10, 2012 11:52
Show Gist options
  • Save ser2708/3865136 to your computer and use it in GitHub Desktop.
Save ser2708/3865136 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