Created
January 9, 2013 08:54
-
-
Save douglas-vaz/4491673 to your computer and use it in GitHub Desktop.
Stretch canvas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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