-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (69 loc) · 2.29 KB
/
Copy pathindex.html
File metadata and controls
74 lines (69 loc) · 2.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Jamming JS - Music Composition Tool</title>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="shortcut icon" type="image/png" href="/favicon.ico" />
</head>
<body>
<div class="mainWrapper" id="mainWrapper">
<div class="mainSoundContainerWrapper" id="mainSoundContainerWrapper">
<button id="resetBtn" class="reset-btn">Reset</button>
<div id="mainSoundContainer"></div>
</div>
<div class="container" id="container">
<div class="compose-container">
<div class="compose-scroll-main">
<div class="compose-section"></div>
</div>
</div>
</div>
<div class="utilitiesRow" id="utilitiesRow">
<div class="utitlitiesContents">
<div class="fileLoadDiv" id="fileLoadDiv">
<div>Load your composition:</div>
<input id="input_file" type="file" class="input_file" accept=".json" />
<button id="import">Submit</button>
</div>
<div class="clearfix tempoAndDetune">
<div class="tempoDiv">
Tempo: <span id="tempoValue"></span>
<input
id="tempo"
type="range"
max="400"
min="10"
value="60"
step="10"
/>
</div>
<div class="detuneDiv">
Detune: <span id="detuneValue"></span>
<input
id="detune"
type="range"
max="900"
min="-900"
value="0"
step="50"
/>
</div>
</div>
</div>
</div>
<div id="songList">
<h2>Firebase songs</h2>
<br />
</div>
</div>
<script src="notevalues.js"></script>
<script src="index.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.9.1/firebase.js"></script>
<script src="app.js"></script>
</body>
</html>