-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (51 loc) · 2.18 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
<!DOCTYPE HTML>
<html>
<head>
<title>Graph Visualizer</title>
<!-- Jquery -->
<!-- <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script> -->
<script src="js/jquery-3.2.1.js"></script>
<!-- Latest compiled and minified CSS -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> -->
<link rel="stylesheet" href="css/bootstrap-3.3.7.css">
<!-- Optional theme -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css"> -->
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="js/bootstrap-3.3.7.js"></script>
<!-- Springy -->
<script src="Springy/springy.js"></script>
<script src="Springy/springyui.js"></script>
<!-- Stylesheet-ul personal -->
<link rel="stylesheet" href="css/style.css">
<!-- JavaScript-ul personal -->
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<div class="container">
<div id="top">
<h3>Graph Visualizer</h3>
</div>
<div id="graf">
<canvas id="springydemo" width="720" height="480"></canvas>
</div>
<div id="controls">
<form action="javascript:void(0);" onsubmit="render()">
<fieldset>
<textarea id="input-text-box"></textarea>
<h5>Input graph</h5>
<input type="radio" name="type" value="adjacency" checked> Adjacency Matrix <br>
<input type="radio" name="type" value="edgelist"> Arch List<br>
<h5>Randomize: </h5>
<input type="radio" name="type" value="random" checked> Generate new graph <br>
<button type="submit" id="render-button">Render</button>
</fieldset>
</form>
</div>
</div>
<div id="bottom">
<div id="footer">
Copyright © 2016 Călin Ilie. Check me out on <a href="https://github.com/calini/graph-visualizer">Github</a>
</div>
</div>
</body>