-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (57 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<title>CodersLab</title>
</head>
<body>
<section class="metronome">
<h1>Hello Metronome</h1>
<div class="light"></div>
<div class="countSection">
<div class="counter">0</div>
<button class="reset">reset</button>
</div>
<div class="speedSection">
<h2>Tempo:</h2>
<div class="tempoSlider">
<p id="minus">-</p><p id="plus">+</p>
<div class="slidecontainer">
<input type="range" min="30" max="450" value="150" class="slider" id="myRange">
</div>
</div>
</div>
<input class="bpmScreen" value="150" max="450" type="number" onchange="limiter(this)"></input><span id="bpm">bpm</span>
<div class="volumeSection">
<h2>Volume:</h2><input class="volumeSlider" value="50" type="Range" min="0" max="100">
<button class="mute">mute</button>
</div>
<div class="functions">
<h2>Sounds:</h2>
<select class="soundChange">
<option value="click">Click</option>
<option value="hihat">Hi-Hat</option>
<option value="kick">Kick</option>
<option value="clap">Clap</option>
</select>
<div class="accentSection">
<h2>Accents:</h2>
<select class="metrum">
<option value="1/4">1/4</option>
<option value="2/4">2/4</option>
<option value="3/4">3/4</option>
<option value="4/4">4/4</option>
</select>
</div>
</div>
<div class="playStop">
<button class="play"></button>
<button class="stop"></button>
</div>
</section>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="https://code.createjs.com/soundjs-0.6.2.min.js"></script>
<script src="js/out.js"></script>
</body>
</html>