forked from nylen/d3-process-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 3.14 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta charset="utf-8">
<title>Les Miserables characters</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="svg.css">
</head>
<body>
<!--[if lt IE 9]>
<div class="unsupported-browser">
This website does not fully support your browser. Please get a
better browser (Firefox or <a href="/chrome/">Chrome</a>, or if you
must use Internet Explorer, make it version 9 or greater).
</div>
<![endif]-->
<div id="split-container">
<a class="btn btn-default nav-button" id="nav-list" href="list.php?dataset=les-mis">
View list
</a>
<div id="graph-container">
<div id="graph"></div>
</div>
<div id="docs-container">
<a id="docs-close" href="#">×</a>
<div id="docs" class="docs"></div>
</div>
</div>
<script src="jquery/jquery-1.10.2.min.js"></script>
<script src="jquery/jquery.browser.min.js"></script>
<script src="d3/d3.v3.min.js"></script>
<script src="colorbrewer.js"></script>
<script src="lib/geometry.js"></script>
<script>
var config = {"title":"Les Miserables characters","graph":{"linkDistance":150,"charge":-400,"height":800,"numColors":12,"labelPadding":{"left":3,"right":3,"top":2,"bottom":2},"labelMargin":{"left":3,"right":3,"top":2,"bottom":2},"ticksWithoutCollisions":50},"types":{"group0":{"short":"Group 0","long":"Group 0 long name for docs"},"group1":{"short":"Group 1","long":"Group 1 long name for docs"},"group2":{"short":"Group 2","long":"Group 2 long name for docs"},"group3":{"short":"Group 3","long":"Group 3 long name for docs"},"group4":{"short":"Group 4","long":"Group 4 long name for docs"},"group5":{"short":"Group 5","long":"Group 5 long name for docs"},"group6":{"short":"Group 6","long":"Group 6 long name for docs"},"group7":{"short":"Group 7","long":"Group 7 long name for docs"},"group8":{"short":"Group 8","long":"Group 8 long name for docs"},"group9":{"short":"Group 9","long":"Group 9 long name for docs"},"group10":{"short":"Group 10","long":"Group 10 long name for docs"}},"constraints":[{"has":{"type":"group1"},"type":"position","x":0.2,"y":0.2,"weight":0.7},{"has":{"type":"group2"},"type":"position","x":0.8,"y":0.2,"weight":0.7},{"has":{"type":"group3"},"type":"position","x":0.2,"y":0.5,"weight":0.7},{"has":{"type":"group4"},"type":"position","x":0.8,"y":0.5,"weight":0.7},{"has":{"type":"group5"},"type":"position","x":0.2,"y":0.8,"weight":0.7},{"has":{"type":"group8"},"type":"position","x":0.8,"y":0.8,"weight":0.7}],"jsonUrl":"./data/projects.json"};
</script>
<script src="script.js"></script>
</body>
</html>