Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $('#canvas').css('width', '100%');
  2.  
  3. $(window).resize(function(){
  4. $('#canvas').height($('#canvas').width() / 2.031);
  5. });
  6.  
  7. ctx.canvas.width = window.innerWidth;
  8.  
  9. ctx.canvas.height = 3*window.innerWidth/4;
  10.  
  11. $('#canvas').css('width', $(window).width());
  12. $('#canvas').css('height', $(window).height());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement