-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlittTreeGenerator.html
More file actions
61 lines (37 loc) · 863 Bytes
/
littTreeGenerator.html
File metadata and controls
61 lines (37 loc) · 863 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> little tree generator </title>
<link rel="stylesheet" type="text/css" href="stylez.css">
<script src="d3.v3.js" charset="utf-8"></script>
<script src="treeData.js"></script>
<script src="tree.js"></script>
<script src="packing.js"></script>
</head>
<body>
<div class="heading">
<h1> zoomable bubble-trees!</h1>
</div>
<div class="container">
<div class="wrapper">
</div>
<div class="sideBar">
<p>SideBar</p>
<p>gork gork gork</p>
</div>
</div>
<script src="littleTree.js"></script>
<script>
// var littleTree = littleTree (treeData, 9);
// makePackingViz(littleTree);
makePackingViz(treeData);
</script>
<script>
// node.on("click", function(d){
// // littleTree = littleTree
// makePackingViz( d);
// })
//makePackingViz( littleTree );
</script>
</body>
</html>