-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 1.97 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mundo da Barbie - Algoritmo A*</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:wght@300;400;700&display=swap"
/>
</head>
<body>
<h1>Mundo da Barbie - Algoritmo A*</h1>
<div class="container">
<div class="side-panel left-side">
<div class="timer-box">
<h3>Tempo Total:</h3>
<p id="timerDisplay">00:00</p>
</div>
<div class="cost-details">
<h3>Custos Detalhados</h3>
<ul id="costList">
<li>Nenhum custo registrado ainda</li>
</ul>
</div>
</div>
<div class="center-panel">
<canvas id="mapCanvas" width="840" height="840"></canvas>
</div>
<div class="side-panel right-panel">
<div class="info-box">
<h2>Estatísticas da Partida</h2>
<p>Custo total acumulado: <span id="custoTotal">0</span></p>
<p>
Amigos sorteados:
<span id="amigosSorteados">Nenhum sorteado ainda</span>
</p>
<p>
Amigos encontrados:
<span id="amigosEncontrados">Nenhum encontrado ainda</span>
</p>
</div>
<div class="final-cost">
<h3>Custo Total Final:</h3>
<p id="finalCost">Aguardando finalização</p>
</div>
<div class="buttons">
<button id="startBtn" class="btn">Começar</button>
<button id="resetBtn" class="btn">Reiniciar</button>
</div>
</div>
</div>
<audio id="encontrarAmigoSound" src="encontrar-amigo.m4a"></audio>
<audio id="voltarParaCasaSound" src="voltar-casa.m4a"></audio>
<img id="barbieImage" src="barbie.png" alt="Barbie" style="display: none" />
<script src="js/main.js"></script>
</body>
</html>