-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (26 loc) · 812 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Mata Zumbi</title>
<script src="js/jogo.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/estilo.css">
</head>
<body onresize="ajustaTamanhopalcoJogo()">
<div class="painel">
<div class="vidas">
<img id="v1" src="img/itens/corazion.png">
<img id="v2" src="img/itens/corazion.png">
<img id="v3" src="img/itens/corazion.png">
</div>
<div class="cronometro"> Tempo Restante: <span id="cronometro"></span></div>
</div>
<script type="text/javascript">
document.getElementById('cronometro').innerHTML = tempo;
//tempo que um zombie ficará exposta na tela
//tempo que um zombie ficará exposta na tela
var createZombie = setInterval(function() {
posicaoRandomica();
},2000)
</script>
</body>
</html>