Skip to content

Instantly share code, notes, and snippets.

@douglas-vaz
Created January 9, 2013 08:54
Show Gist options
  • Save douglas-vaz/4491673 to your computer and use it in GitHub Desktop.
Save douglas-vaz/4491673 to your computer and use it in GitHub Desktop.
Stretch canvas
<!DOCTYPE html>
<html>
<head>
<title>Test Game</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#gameCanvas').width(window.innerWidth);
$('#gameCanvas').height(window.innerHeight);
});
</script>
</head>
<body>
<canvas id="gameCanvas">
</canvas>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment