-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (64 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Learning JS">
<meta name="keywords" content="HTML,CSS,JavaScript,Piano">
<meta name="author" content="Robat Das Orvi">
<title>JS Piano Tune</title>
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<!-- Class files for each key -->
<!-- Introduced new html5 tage data-key -->
<div class="keys">
<div data-key="65" class="key">
<kbd>A</kbd>
<span class="sound"></span>
</div>
<div data-key="83" class="key">
<kbd>S</kbd>
<span class="sound"></span>
</div>
<div data-key="68" class="key">
<kbd>D</kbd>
<span class="sound"></span>
</div>
<div data-key="70" class="key">
<kbd>F</kbd>
<span class="sound"></span>
</div>
<div data-key="71" class="key">
<kbd>G</kbd>
<span class="sound"></span>
</div>
<div data-key="72" class="key">
<kbd>H</kbd>
<span class="sound"></span>
</div>
<div data-key="74" class="key">
<kbd>J</kbd>
<span class="sound"></span>
</div>
<div data-key="75" class="key">
<kbd>K</kbd>
<span class="sound"></span>
</div>
<div data-key="76" class="key">
<kbd>L</kbd>
<span class="sound"></span>
</div>
</div>
<!-- audio tag and their source files-->
<audio data-key="65" src="static/sounds/Casio-VZ-10M-Piano-C2.wav"></audio>
<audio data-key="83" src="static/sounds/Ensoniq-ESQ-1-Piano-C3.wav"></audio>
<audio data-key="68" src="static/sounds/Ensoniq-SQ-2-Piano-C2.wav"></audio>
<audio data-key="70" src="static/sounds/Alesis-Fusion-Bright-Acoustic-Piano-C4.wav"></audio>
<audio data-key="71" src="staticsounds/Alesis-Fusion-Honky-Tonk-Piano-C5.wav"></audio>
<audio data-key="72" src="static/sounds/Alesis-Fusion-Bright-Acoustic-Piano-C6.wav"></audio>
<audio data-key="74" src="static/sounds/Ensoniq-SQ-2-Piano-C7.wav"></audio>
<audio data-key="75" src="static/sounds/E-Mu-Proteus-FX-Pianotar-C3.wav"></audio>
<audio data-key="76" src="static/sounds/Yamaha-MU90R-ConcertGrand-C6.wav"></audio>
<script src="static/js/sound.js"></script>
</body>
</html>