-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
67 lines (67 loc) · 1.83 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
<html>
<head>
<title>
Progetto TPSI:Gioco del 15
</title>
<link href="Stili/style.css" rel="stylesheet" type="text/css">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="Script/script.js"> </script>
</head>
<body>
<center>
<div class="background">
<h1><div id="Titolo">GIOCO DEL 15</div></h1>
<!--Bottoni che cambiano css dinamicamente-->
<button type="button" id="btnGraficaBright" class="topButton">Bright</button>
<button type="button" id="btnGraficaDark" class="topButton">Dark</button>
<br><br>
<!--contenitore Tabella-->
<div id="mainTable">
</div>
<!--Bottoni intermedi-->
<button type="button" id="btnNuovaPartita" class="middleButton">Nuova partita</button>
<button type="button" id="btnMescola" class="middleButton">Mescola</button>
<button type="button" id="btnPausa" class="middleButton">Pausa</button>
<br>
<!--Tabella contenente timer, contatore di mosse e il nome del giocatore-->
<table class="bottomTable">
<tr>
<td>
Numero mosse:
</td>
<td>
<div id="mosse">0</div>
</td>
</tr>
<tr>
<td>
Tempo trascorso:
</td>
<td>
<div id="counter">
<span id="s0">0</span>
<span id="s1">0</span>
<span id="s2">:</span>
<span id="s3">0</span>
<span id="s4">0</span>
</div>
</td>
</tr>
<tr>
<td>
Nome giocatore:
</td>
<td id="nomeGiocatore">
</td>
</tr>
</table>
</div>
<br>
<!--Menu inferiore-->
<button type="button" id="btnInformazioni" class="bottomButton">Informazioni</button>
<button type="button" id="btnCrediti" class="bottomButton">Crediti</button>
<button type="button" id="btnHowTo" class="bottomButton">Come si gioca</button>
<p id="paragrafoMultiuso">Paragrafo duttile</p>
</center>
</body>
</html>