Skip to content

Commit

Permalink
Setup inicial, print passaro, chão, fundo, game loop, passaro cai
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCMello committed Jul 30, 2020
1 parent a3aa710 commit c8349e5
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 144 deletions.
27 changes: 0 additions & 27 deletions FlappyBird/index.html

This file was deleted.

File renamed without changes
45 changes: 23 additions & 22 deletions index.html
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>
95 changes: 0 additions & 95 deletions index.js

This file was deleted.

File renamed without changes.

0 comments on commit c8349e5

Please sign in to comment.