-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>The Wavesynth</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Oswald:500" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="/css/style.css" />
</head>
<body>
<!--<canvas id="myCanvas" width="740" height="190" style="border:1px solid #000000;"></canvas>-->
<div style="position: relative;">
<canvas id="whiteKeys" width="740" height="190"
style="position: relative; left: 0; top: 0; z-index: 0;"></canvas>
<canvas id="blackKeys" width="740" height="190"
style="position: absolute; left: 0; top: 0; z-index: 1; "></canvas>
</div>
<div id="sliders">
<div id="slider1">low pass</div>
<div id="slider2">Delay</div>
<div id="slider3">Tremolo</div>
</div>
<div id="buttons">
<div id="button1"></div>
<div id="button2"></div>
<div id="button3"></div>
</div>
<br>
<div id="instrument">Instrument</div>
<div id="oktav">Oktav</div>
<div>
<div id="masterButton"><center>Start the Instrument</center></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="scripts/NexusUI.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>