-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
executable file
·47 lines (35 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
<title>Cytoscape.js network/graph</title>
<!--
This is a simple starting point for building a network/graph with Cytosape.js. A number of
extensions are included for you in case you'd like to play with them. Have fun!
-->
<link href="style.css" rel="stylesheet" />
<!-- the graph/network library we're using -->
<script src="cytoscape.min.js"></script>
<!-- if you'd like to use the qtip extension -->
<script src="jquery.min.js"></script>
<script src="jquery.qtip.min.js"></script>
<script src="cytoscape-qtip.js"></script>
<!-- if you'd like to use the cxtmenu extension -->
<script src="jquery.min.js"></script>
<script src="cytoscape-cxtmenu.js"></script>
<!-- if you'd like to use the cola layout -->
<script src="cola.v3.min.js"></script>
<script src="cytoscape-cola.js"></script>
<!-- if you'd like to use the dagre layout -->
<script src="dagre.js"></script>
<script src="cytoscape-dagre.js"></script>
<!-- sample graph data -->
<script src="elements.js"></script>
<!-- your code -->
<script src="-edit-me.js"></script>
</head>
<body>
<div id="cy"></div>
</body>
</html>