-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (65 loc) · 2.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Osrank Visualiser</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Visualization of multiple (osranked) ecosystems">
<meta name="author" content="Alfredo Di Napoli, original version from Andrei Kashcha">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="container no-overflow take-it-all">
<div class="row max-height">
<div class="whole-height" id="graphVisualization">
</div>
<div class="span2 well scrollable whole-height" id="sideNavigation">
<h3>Choose Graph:</h3>
<div class="sidebar-nav">
<ul class="nav nav-list" id='graphsContainer'></ul>
</div>
<h3>Node explorer</h3>
<form class="navbar-search input-medium">
<input type="text" id="node-explorer" class="search-query input-medium" placeholder="Search">
</form>
<ul style="list-style-type:none" id="node-explorer-result"></ul>
<!-- end of sideNavigation -->
</div>
</div>
</div>
<div id='progress' style="width: 200px; text-align:center;position: absolute;left: 50%;margin-left: -75px; display: none;">
<div class="progress progress-striped active"><div class="bar" style="width: 100%;"></div></div>
Loading...
</div>
<div id='settings'>
<h3>Graph info</h3>
<div id='description'>
</div>
</div>
<div id='toggleLayout'>
</div>
<div id='webglsupport'>
<div class="alert alert-error">Your browser seem not to support WebGL. <br/>
I'm falling back to SVG rendering but it's slow.<br/>
Click <a href='http://get.webgl.org/troubleshooting'>here</a> to troubleshoot
WebGL and get better performance.<br />
Check <a href='http://www.youtube.com/watch?v=L5KrtGB8oA4'>this video</a> to see this site in action.
</div>
</div>
<div id='mouseScrollHint'>
<span class="label label-inverse">Use mouse wheel to zoom in/zoom out</span>
</div>
<script src="js/vivagraph.min.js?v=0.19"></script>
<script src="js/graphsdb.js?v=0.29"></script>
<script src="js/graphs.js?v=0.1"></script>
<script src="js/bops.js?v=0.1"></script>
<script src="js/gunzip.min.js?v=0.1"></script>
<script src="js/jquery.min.js?v=0.1"></script>
<script src="js/ngraph.gexf.min.js?v=0.1"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/layout.js?v=0.1"></script>
<script src="js/degree.js?v=0.1"></script>
<script src="js/logic.js?v=0.1"></script>
</body>
</html>