-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (81 loc) · 4.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
<!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">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="favicon.ico">
<title>Acorde Pra Vida</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<div id="chord-options" class="glass_effect">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Instrumento</label>
<select id="instrument" class="form-select">
<option value="keyboard">Teclado/Piano/Acordeon</option>
</select>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Campo Harmonico</label>
<select id="harmonic-field" class="form-select">
<option value="C">C - Dó Maior</option>
<option value="G">G - Sol Maior</option>
</select>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">BPM Metrônomo</label>
<input type="number" id="metronome-bpm" class="form-control" value="60" placeholder="METRONOMO BPM">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Ordem dos Acordes</label>
<select id="sequential-chords" class="form-select">
<option value="true">Sequencial</option>
<option value="false">Aleatório</option>
</select>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Intervalo entre acordes</label>
<input type="number" id="harmonic-bpm" class="form-control" value="4" placeholder="HARMONICO BPM">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Ajuda</label>
<select id="basic-mode" class="form-select">
<option value="true">Exibir Notas</option>
<option value="false">Ocultar Notas</option>
</select>
</div>
<div class="mb-3">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="play-metronome-sound" checked="checked">
<label class="form-check-label" for="play-metronome-sound">
Tocar Som do Metrônomo
</label>
</div>
</div>
<div class="mb-3">
<button id="start_btn" class="btn btn-success">Iniciar</button>
</div>
</div>
</div>
<div class="col-md-9">
<div id="chord-data" class="glass_effect">
<h6 id="instrument_data"></h6>
<h1 id="field">Defina as configurações e clique em Iniciar!</h1>
<h1 id="field-chords"></h1>
<h1 id="chords-notes"></h1>
<img id="chord-example-image" src="" alt="" style="display:none">
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>