-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface.html
102 lines (94 loc) · 3.96 KB
/
interface.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="static/style.css" type="text/css">
</head>
<body>
<script src="index.js"></script>
</body>
</html>
<!--<!DOCTYPE html>-->
<!--<html>-->
<!--<head>-->
<!-- <link type="text/css" rel="stylesheet" href="style.css">-->
<!-- <script src="script.js"></script>-->
<!-- <script src="https://code.jquery.com/jquery-2.1.3.js"></script>-->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/2.3.15/cytoscape.js"></script>-->
<!-- <script type="text/javascript">-->
<!-- $(function () {-->
<!-- var cy = cytoscape({-->
<!-- container: document.getElementById('cy'),-->
<!-- style: [-->
<!-- {-->
<!-- selector: 'node',-->
<!-- css: {-->
<!-- width: 50,-->
<!-- height: 50,-->
<!-- 'background-color': '#61bffc',-->
<!-- content: 'data(id)'-->
<!-- }-->
<!-- }-->
<!-- ],-->
<!-- elements: {-->
<!-- nodes: [-->
<!-- {data: {id: 'A'}},-->
<!-- {data: {id: 'B'}},-->
<!-- {data: {id: 'C'}},-->
<!-- {data: {id: 'D'}},-->
<!-- {data: {id: 'E'}},-->
<!-- {data: {id: 'F'}},-->
<!-- {data: {id: 'G'}},-->
<!-- {data: {id: 'H'}},-->
<!-- {data: {id: 'J'}},-->
<!-- {data: {id: 'K'}},-->
<!-- {data: {id: 'L'}},-->
<!-- {data: {id: 'M'}}-->
<!-- ],-->
<!-- edges: [-->
<!-- {data: {id: 'e1', source: 'A', target: 'B'}},-->
<!-- {data: {id: 'e2', source: 'A', target: 'C'}},-->
<!-- {data: {id: 'e3', source: 'B', target: 'D'}},-->
<!-- {data: {id: 'e4', source: 'C', target: 'D'}},-->
<!-- {data: {id: 'e5', source: 'C', target: 'E'}},-->
<!-- {data: {id: 'e6', source: 'C', target: 'F'}},-->
<!-- {data: {id: 'e7', source: 'D', target: 'G'}},-->
<!-- {data: {id: 'e8', source: 'D', target: 'H'}},-->
<!-- {data: {id: 'e9', source: 'E', target: 'H'}},-->
<!-- {data: {id: 'e10', source: 'E', target: 'J'}},-->
<!-- {data: {id: 'e11', source: 'F', target: 'J'}},-->
<!-- {data: {id: 'e12', source: 'F', target: 'K'}},-->
<!-- {data: {id: 'e13', source: 'G', target: 'L'}},-->
<!-- {data: {id: 'e14', source: 'H', target: 'L'}},-->
<!-- {data: {id: 'e15', source: 'H', target: 'M'}},-->
<!-- {data: {id: 'e16', source: 'J', target: 'M'}}-->
<!-- ]-->
<!-- },-->
<!-- layout: {-->
<!-- name: 'breadthfirst',-->
<!-- directed: true,-->
<!-- padding: 10,-->
<!-- /* color: "#ffff00",*/-->
<!-- fit: true-->
<!-- }-->
<!-- });-->
<!-- });-->
<!-- </script>-->
<!--</head>-->
<!--<style>-->
<!-- #cy {-->
<!-- height: 100%;-->
<!-- width: 100%;-->
<!-- position: absolute;-->
<!-- left: 0;-->
<!-- /*top: 200;*/-->
<!-- }-->
<!--</style>-->
<!--<body>-->
<!--<h1>Cytoscape.js Simple Demo</h1>-->
<!--<div id="cy"></div>-->
<!--</body>-->
<!--</html>-->