-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (63 loc) · 3.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Music!</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,400i,500,500i,600,600i,700,700i&display=swap" rel="stylesheet">
<!-- import the webpage's javascript file -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/13.0.1/Tone.min.js"></script>
<script src="https://threejs.org/build/three.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/mathjs/6.2.2/math.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/mathjs/6.2.2/math.js"></script>
<script src="script.js" defer></script>
<script src="script2.js" defer ></script>
</head>
<body>
<div id="scene-container">
</div>
<div id='content_container'>
<div id='play-contain'>
<button id='play-button' class = 'play ripple'>▶️</button>
</div>
<div id='tutorial_button_container'>
<a href="./tutpage.html" target="_blank"><button id='tutorial_button'> Tutorial </button></a>
</div>
<div id='button-holder'>
<div id="button-container"></div></div>
<div class = 'Butts' style="text-align:center;">
<button id = 'left-move' class = 'circle'>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" />
<path fill="none" d="M0 0h24v24H0V0z" /></svg>
</button>
<button id = 'up-move' class = 'circle'>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" />
<path fill="none" d="M0 0h24v24H0V0z" /></svg>
</button>
<button id = 'right-move' class = 'circle'>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25">
<path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" />
<path fill="none" d="M0 0h24v24H0V0z" /></svg>
</button>
<button id = 'down-move' class = 'circle'>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25">
<path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z" />
<path d="M0 0h24v24H0z" fill="none" /></svg>
</button>
</div>
<div class="container">
<div class="slider">
<input id='rvalinp' value=20 type="range" min="70" max="200" oninput="rangevalue.value=value" />
<output id="rangevalue">50</output>
</div>
</div>
</div>
<script src="app.js" defer></script>
</body>
</html>