-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.html
36 lines (31 loc) · 986 Bytes
/
app.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="estilo.css" />
<script src="jogo.js"></script>
</head>
<body onresize="ajustaTamanhoPalcoJogo()">
<div class="menu">
<button onclick="gameEasy()" id="button" class="button">FÁCIL</button>
<button onclick="gameMedium()" id="button" class="button">MÉDIO</button>
<button onclick="gameHard()" id="button" class="button">DIFÍCIL</button>
</div>
<div class="painel">
<div class="vidas">
<img id="vida1" src="imagens/coracao_cheio.png" />
<img id="vida2" src="imagens/coracao_cheio.png" />
<img id="vida3" src="imagens/coracao_cheio.png" />
</div>
<div id="tempo" class="cronometro">Moscas matadas:</div>
</div>
<script>
/* function startGame() {
retiraMosca()
const test = setInterval(function () {
posicaoRandomica()
}, time)
} */
</script>
</body>
</html>