-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (75 loc) · 3.25 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
<!DOCTYPE html>
<html lang="pt-BR">
<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>Programador musical</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="images/bateria.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/estilos.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
</style>
<script src="main.js" defer></script>
</head>
<body>
<header>
<h1 class="TituloPrincipal">Infortechlado</h1>
<section class="Criacao">
<input type="text" id="NomeMusica" placeholder="Nomeie sua musica">
<input type="text" id="CriarMusica" placeholder="digite sua musica">
<div>
<input type="button" id="BotaoCriarMusica" onclick="MusicConfig.TocaMusica()" value="Tocar">
<input type="button" id="SalvarMusica" onclick="Salvar(this)" value="Salvar">
<input type="range" min="1" max="100" value="50" class="slider" id="volume">
</div>
</section>
</header>
<main>
<table class="Musicas">
<thead>
<tr>
<th colspan="3">
Musicas
</th>
<th style="display: none;"></th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<td colspan="3">
<a href="game.html">Game Mode</a>
</td>
</tr>
</tfoot>
</table>
<section class="teclado">
<button data-id="pom" class="tecla tecla_pom">Pom</button>
<button data-id="clap" class="tecla tecla_clap">Clap</button>
<button data-id="tim" class="tecla tecla_tim">Tim</button>
<button data-id="puff" class="tecla tecla_puff">Puff</button>
<button data-id="splash" class="tecla tecla_splash">Splash</button>
<button data-id="toim" class="tecla tecla_toim">Toim</button>
<button data-id="psh" class="tecla tecla_psh">Psh</button>
<button data-id="tic" class="tecla tecla_tic">Tic</button>
<button data-id="tom" class="tecla tecla_tom">Tom</button>
</section>
<div></div>
</main>
<audio src="sounds/keyz.wav" id="som_tecla_psh"></audio>
<audio src="sounds/keyx.wav" id="som_tecla_tic"></audio>
<audio src="sounds/keyc.wav" id="som_tecla_tom"></audio>
<audio src="sounds/keya.wav" id="som_tecla_puff"></audio>
<audio src="sounds/keys.wav" id="som_tecla_splash"></audio>
<audio src="sounds/keyd.wav" id="som_tecla_toim"></audio>
<audio src="sounds/keyq.wav" id="som_tecla_pom"></audio>
<audio src="sounds/keyw.wav" id="som_tecla_clap"></audio>
<audio src="sounds/keye.wav" id="som_tecla_tim"></audio>
</body>
</html>