Created
January 6, 2017 11:27
-
-
Save AndrewJakubowicz/e5f24504f369b729ccbf6339170730a7 to your computer and use it in GitHub Desktop.
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
var screen = document.getElementById("screen"); | |
var player = document.getElementById("player"); | |
var height = 400, | |
width = 500, | |
playerHeight = 50, | |
playerWidth = 50; | |
// Add width and height to the screen. | |
screen.style.width = width; | |
screen.style.height = height; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment