-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·77 lines (62 loc) · 2.12 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>
<meta charset="utf-8">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="modal-content" id="modal">
<p>Select from where take the files...</p>
<br/>
<p class="ie">Remote files example: https://people.rit.edu/uxc8532/</p>
<p class="ie">Local files example: localhost/AnytimeAnywhere/</p>
<br/>
URL/Path Way <input type="text" id="fname"><br>
<br/>
<input type="submit" value="Go to the graph" class="btn btn-default" onclick="goToGraph()">
</div>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-brand">
<img src="img/logoAA.png">
</div>
<ul class="nav navbar-nav" id="levels">
<li class="active" id="l0" onclick="changeLevel(0);"><a href="#">Level 0</a></li>
</ul>
<ul class="nav navbar-nav navbar-right" id="menuRight">
<li class="active"><a href="index.html">Graph</a></li>
<li><a href="results/index.html">Graph Results</a></li>
</ul>
</div>
</nav>
<div id="settings">
Color:
<select id="color" onchange="changeColor()">
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="yellow">Yellow</option>
<option value="#ccc">Gray</option>
</select>
Edge:
<select id="size" onchange="changeSize()">
<option value="1.5">x1</option>
<option value="3">x2</option>
<option value="4.5">x3</option>
<option value="6">x4</option>
</select>
Dynamic sizes
<input type="checkbox" id="dynsize" value="true" onclick="dynamicSize();" checked>
<!--
Max size of nodes
<input type="number" min="0" id="maxSize" onchange="maxSizeNodes()">
-->
Refresh timer (secs)
<input type="number" min="0" id="timer" onchange="createInterval()"/>
<img src="img/logo.png">
</div>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="js/d3-tip.js" charset="utf-8"></script>
<script src="js/index.js" charset="utf-8"></script>
</body>
</html>