-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradial-items.html
More file actions
60 lines (55 loc) · 2.17 KB
/
radial-items.html
File metadata and controls
60 lines (55 loc) · 2.17 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Radial Items Graph</title>
<meta name="description" content="Radial Items Network Graph" />
<meta name="keywords" content="Datavisualization, dataviz, items, network" />
<meta name="author" content="Pablo Molnar" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<link type="text/css" rel="stylesheet" href="files/bootstrap/css/bootstrap.css"/>
<link type="text/css" rel="stylesheet" href="files/style.css"/>
<style type="text/css">
.node {
font-size: 16px;
}
</style>
</head>
<body>
<div class="title-box">
<span>Items Networking</span>
<div class="throughtput">
<div id="throughtput-in">
<h3></h3>
<img src="files/light-green.png">
</div>
<div id="throughtput-out">
<h3></h3>
<img src="files/light-red.png">
</div>
</div>
</div>
<div class="ui-box">
<div class="btn-toolbar">
<div class="btn-group">
<a class="btn" href="radial-dept.html">Depts</a>
<a class="btn" href="radial-app.html">Apps</a>
<a class="btn" href="radial-scope.html">Scopes</a>
</div>
<div class="btn-group">
<a class="btn" href="radial-items.html">Items</a>
</div>
<div class="btn-group">
<button id="btn-in" class="btn btn-success on" style="width:50px;">in</button>
<button id="btn-out" class="btn btn-danger on" style="width:50px;">out</button>
</div>
</div>
<div class="tension">Tension: <input type="range" min="0" max="100" value="85"></div>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js"></script>
<script type="text/javascript"> var json = "json/items.json" </script>
<script type="text/javascript" src="files/d3.js"></script>
<script type="text/javascript" src="files/d3.layout.js"></script>
<script type="text/javascript" src="files/main.js"></script>
</body>
</html>