-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
35 lines (26 loc) · 1000 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
<!--Bianca Bastos
Inspirado no projeto de Jorge Santana (jorgesantana.net.br), disponibilizado na Udemy-->
<!doctype html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="https://biancabsouza23.github.io/appCacaAguaVivas/estilo.css">
<script src="https://biancabsouza23.github.io/appCacaAguaVivas/jogo.js"></script>
</head>
<body onresize="ajustaTamanhoDoPalco()">
<div class="painel">
<div class="vidas">
<img id="v1" src="coracao_cheio.png">
<img id="v2" src="coracao_cheio.png">
<img id="v3" src="coracao_cheio.png">
</div>
<div class="cronometro">Tempo Restante: <span id="cronometro"></span></div>
</div>
<script>
document.getElementById('cronometro').innerHTML = tempo
var criaAgviva = setInterval(function(){
posicaoRandom()
}, 2000)
</script>
</body>
</html>