-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>spectrum widget this is a test</title>
<link rel="stylesheet" href="./spectrum.css">
</head>
<body>
<section class="widget-container">
<div id="left-pane">
<div id="spectrum-canvas"></div>
<div id="filter-panel">
<div class="preset-buttons">
<!-- load preset: -->
</div>
</div>
</div>
<div id="spectrum-controls">
<h2> spectrum simulator</h2>
<!-- <div>
<label for="ch1">deep red</label>
<input type="range" name="ch1" id="ch1" min="0" max="10" value="10" onchange="updateRebuild()">
</div>
-->
</div>
</section>
</body>
<script src="./d3.v4.js"></script>
<script src="./spectrum.js"></script>
</html>