-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (37 loc) · 889 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Life of Sound</title>
</head>
<body>
<style>
body {
margin: 0;
}
#bins {
width: 100%;
height: 100%;
}
.bin {
background-color: blue;
height: 2px;
}
.row {
float: left;
}
.row > div {
width: 10px;
height: 10px;
background-color: #eee;
}
.row > .alive {
background-color: #333;
}
</style>
<div id="bins">
</div>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="index.js"></script>
</body>
</html>