-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
117 lines (108 loc) · 3.79 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link href="./union.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="user-zonePrincipal">
<main>
<div class="user-zone">
<form class="userName">
<input type="text" placeholder="Nombre" id="nombre-user" />
<input
type="button"
value="Confirmar y Jugar"
id="btn-start"
class="btn-play"
/>
</form>
<section class="score-zone">
<h1>User Stats and time</h1>
<h3>Name</h3>
<p id="name"></p>
<h3>Game duration</h3>
<p id="time"></p>
</section>
</div>
</main>
<footer>
Assembler Memory Game, by: Jackson Eli Thalita Christian David
</footer>
</div>
<div id="main-body" class="finish5">
<main class="images-juego main">
<section class="container">
<h2 class="titulo">Guess the right card</h2>
<div><button class="botones" id="0" onclick="turn(0)"></button></div>
<div><button class="botones" id="1" onclick="turn(1)"></button></div>
<div><button class="botones" id="2" onclick="turn(2)"></button></div>
<div><button class="botones" id="3" onclick="turn(3)"></button></div>
<div><button class="botones" id="4" onclick="turn(4)"></button></div>
<div><button class="botones" id="5" onclick="turn(5)"></button></div>
<div><button class="botones" id="6" onclick="turn(6)"></button></div>
<div><button class="botones" id="7" onclick="turn(7)"></button></div>
<div><button class="botones" id="8" onclick="turn(8)"></button></div>
<div><button class="botones" id="9" onclick="turn(9)"></button></div>
<div>
<button class="botones" id="10" onclick="turn(10)"></button>
</div>
<div>
<button class="botones" id="11" onclick="turn(11)"></button>
</div>
<div>
<button class="botones" id="12" onclick="turn(12)"></button>
</div>
<div>
<button class="botones" id="13" onclick="turn(13)"></button>
</div>
<div>
<button class="botones" id="14" onclick="turn(14)"></button>
</div>
<div>
<button class="botones" id="15" onclick="turn(15)"></button>
</div>
</section>
<section>
<p id="actual-player-info"></p>
<p id="name-score"></p>
<h2 id="hits">Hits: 0</h2>
<h2 id="tiempo">tiempo: 0 seconds</h2>
<h2 id="moves">Moves: 0</h2>
</section>
</main>
</div>
<div id="main-bodyfinish" class="finish5">
<!-- finish-->
<div class="bodyfinish">
<div class="finalgame">
<img src="./assets/youwin.gif" alt="win" />
<p class="won">Your won in</p>
<p id="tiempo-win">seconds</p>
<button class="btn-play" id="btn-play-win">Play again</button>
</div>
<div class="finalscore">
<p>persona</p>
</div>
</div>
<!--end finish-->
</div>
<!-- class="win-dad borrar -->
<div class="bodyfinish finish5" id="papafinal">
<div class="finalgame">
<img src="./assets/loser.gif" alt="lost" />
<br />
<button class="btn-play" id="btn-play-lost">Play again</button>
</div>
<div class="finalscore">
<h4>User Scores</h4>
<p>Mark</p>
<p id="tiempo-lost"></p>
</div>
</div>
<script src="./union.js"></script>
</body>
</html>