-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
91 lines (88 loc) · 2.8 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
<!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" />
<link href="style.css" rel="stylesheet" />
<link rel="icon" type="image/jpg" href="extras/favicon.png" />
<title>Batería en JavaScript</title>
</head>
<body>
<div class="instrucciones">
<div>
<h1>¡CONVIÉRTETE EN BATERISTA!</h1>
<p>
CLICKA CON EL RATÓN EN LAS PARTES DE LA BATERÍA O UTILIZA LAS TECLAS
DE TU TECLADO PARA EMITIR DIFERENTES SONIDOS
</p>
<button id="comenzar" class="comenzar">LET'S GO!</button>
<audio>
<source src="Sonidos/redoble.wav" type="audio/wav" />
</audio>
</div>
</div>
<header>
<h1>BADUM-TSS</h1>
</header>
<main>
<section class="button-contaniner">
<img src="BateriaJS.png" alt="Batería" id="bateria" />
<button
class="melody-button"
id="crash"
src="Sonidos/crash.wav"
></button>
<button
class="melody-button"
id="close"
src="Sonidos/hihat-close.wav"
></button>
<button
class="melody-button"
id="open"
src="Sonidos/hihat-open.wav"
></button>
<button class="melody-button" id="kick" src="Sonidos/kick.wav"></button>
<button class="melody-button" id="ride" src="Sonidos/ride.wav"></button>
<button
class="melody-button"
id="snare"
src="Sonidos/snare.wav"
></button>
<button
class="melody-button"
id="tom-high"
src="Sonidos/tom-high.wav"
></button>
<button
class="melody-button"
id="tom-low"
src="Sonidos/tom-low.wav"
></button>
<button
class="melody-button"
id="tom-mid"
src="Sonidos/tom-mid.wav"
></button>
<button class="key-button" id="teclado">USAR TECLADO</button>
<div class="tecla ocultar" id="crashQ">Q</div>
<div class="tecla ocultar" id="openE">E</div>
<div class="tecla ocultar" id="closeW">W</div>
<div class="tecla ocultar" id="snareU">U</div>
<div class="tecla ocultar" id="tom-highI">I</div>
<div class="tecla ocultar" id="kickR">R</div>
<div class="tecla ocultar" id="tom-lowO">O</div>
<div class="tecla ocultar" id="tom-midP">P</div>
<div class="tecla ocultar" id="rideT">T</div>
</section>
</main>
<footer>
<p>
MÓNICA IRIMIA VILLARMEA, IGNACIO CHIACCHIERA Y ANA BELÉN BERNÁRDEZ
MARTÍNEZ PARA HACK A BOSS EN 2023
</p>
</footer>
<script src="script.js" type="module"></script>
</body>
</html>