-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplay.html
More file actions
52 lines (44 loc) · 1.31 KB
/
play.html
File metadata and controls
52 lines (44 loc) · 1.31 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src='js/utilities.js'></script>
<script src="js/lib/jquery-3.3.1.min.js"></script>
<script src='js/lib/three.min.js'></script>
<script src='js/lib/require.js'></script>
<script src='js/lib/colladaLoader.js'></script>
<link rel="stylesheet" href="css/styleCompartido.css">
<link rel="stylesheet" href="css/stylePlay.css">
<title>Play BomberCraft</title>
</head>
<body style='margin: 0px; background-color: #bbbbbb; overflow: hidden;'>
<div id='infoButton'>
i
</div>
<div id='optionButton'>
o
</div>
<div id='infoPopup' style='display: none;'>
</div>
<div id='timeDiv'>
<p id="time">Segundos: 0</p>
</div>
<div id='textDiv' style='display: none;'>
<p id="text">Has iniciado la partida!!</p>
</div>
<div id='score'>
<p id="userGamertag">Gamertag</p>
<p id="userLevel">Nivel: 0</p>
<p id="userPoints">Puntos: 0</p>
<p id="androids">Androides: 0</p>
</div>
<script src="js/checkGame.js"></script>
<script src="js/events.js"></script>
<script src="js/saveGame.js"></script>
<script src="js/comun.js"></script>
<script src='js/play.js'></script>
<script src='js/text.js'></script>
</body>
</html>