-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup inicial, print passaro, chão, fundo, game loop, passaro cai
- Loading branch information
1 parent
a3aa710
commit c8349e5
Showing
5 changed files
with
23 additions
and
144 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Flappy Bird - DevSoutinho</title> | ||
</head> | ||
<body> | ||
<canvas id="game-canvas" width="320" height="480"></canvas> | ||
<style> | ||
body { | ||
min-height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
canvas { | ||
border: 1px solid #000; | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
</style> | ||
<head> | ||
<meta charset="UTF-8"/> | ||
<meta name="viewport" content="width=device-width, inicial-scale=1.0"/> | ||
<title>FlapBird - John</title> | ||
</head> | ||
|
||
<script src="./jogo.js"></script> | ||
</body> | ||
<body> | ||
<canvas id="game-canvas" width="320" height="480"></canvas> | ||
|
||
<style> | ||
body { | ||
min-height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
canvas{ | ||
border: 1px solid black; | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
</style> | ||
<script src="./jogo.js"></script> | ||
</body> | ||
</html> |
File renamed without changes.