-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
62 lines (54 loc) · 1.5 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>graphSub</title>
<title>Animating Changes in Force Diagram</title>
<script src="http://d3js.org/d3.v3.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<style>
.link {
stroke-width: 4px;
}
.node {
stroke: #fff;
stroke-width: 2px;
}
.textClass {
stroke: #23232;
font-family: "Arial", "Liberation Sans", Arial, Helvetica, sans-serif;
font-weight: bold;
stroke-width: 3;
font-size: 20px;
}
#licensing {
fill: green;
}
.link.licensing {
stroke: green;
}
#chart, .ui-widget {
border-style: solid;
border-width: 2px;
border-color: white;
}
body {
background-color: white;
}
</style>
</head>
<body>
<div class="ui-widget">
<label for="search">Search: </label>
<input id="search">
</div>
<div id="chart">
</div>
</body>
<script src="static/js/g2j4d3.js"></script>
<script src="static/js/graphSub.js"></script>
</html>