forked from ChromeGaming/GameSphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
35 lines (25 loc) · 776 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title></title>
<meta charset="UTF-8">
<link rel="stylesheet" href="estilo.css" />
<script src="jogo.js"></script>
</head>
<body onresize="ajustaTamanhoPalcoJogo()">
<div class="painel">
<div class="vidas">
<img id="v1" src="img/coracao_cheio.png" />
<img id="v2" src="img/coracao_cheio.png" />
<img id="v3" src="img/coracao_cheio.png" />
</div>
<div class="cronometro">Start: <span id="cronometro"></span></div>
</div>
<script>
document.getElementById('cronometro').innerHTML = tempo
let criaMosquito = setInterval(function() {
posicaoRandomica()
}, criaMosquitoTempo)
</script>
</body>
</html>