Skip to content

Commit 8721fce

Browse files
Add files via upload
0 parents  commit 8721fce

31 files changed

+2351
-0
lines changed

css/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/main.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
.pointer {cursor: pointer;}
2+
.pointer:hover{
3+
background-color: rgb(211, 211, 211);
4+
}
5+
#network {
6+
width: 100%;
7+
height: 350px;
8+
border: none;
9+
}
10+
.modal {
11+
cursor: default;
12+
}
13+
#linkGitHub{
14+
text-decoration: none;
15+
color: black;
16+
transition:0.5s;
17+
}
18+
19+
#linkGitHub:hover {
20+
color: #008cff;
21+
transition:0.5s;
22+
}
23+
#output{
24+
user-select: none;
25+
}

css/vis-network.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/vis.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
[
2+
{
3+
"id": 1,
4+
"from": 1,
5+
"to": 2,
6+
"label": " 4 ",
7+
"arrowTo": true,
8+
"arrowFrom": false
9+
},
10+
{
11+
"id": 2,
12+
"from": 2,
13+
"to": 4,
14+
"label": " 2 ",
15+
"arrowTo": false,
16+
"arrowFrom": true
17+
},
18+
{
19+
"id": 3,
20+
"from": 3,
21+
"to": 2,
22+
"label": " 2 ",
23+
"arrowTo": true,
24+
"arrowFrom": false
25+
},
26+
{
27+
"id": 4,
28+
"from": 4,
29+
"to": 1,
30+
"label": " 2 ",
31+
"arrowTo": false,
32+
"arrowFrom": true
33+
},
34+
{
35+
"id": 5,
36+
"from": 1,
37+
"to": 3,
38+
"label": " 2 ",
39+
"arrowTo": true,
40+
"arrowFrom": false
41+
},
42+
{
43+
"id": 7,
44+
"from": "2",
45+
"to": "5",
46+
"label": " 1 ",
47+
"arrowTo": false,
48+
"arrowFrom": true
49+
},
50+
{
51+
"id": 14,
52+
"from": "3",
53+
"to": "5",
54+
"label": " 1 ",
55+
"arrowTo": true,
56+
"arrowFrom": false
57+
}
58+
]
179 KB
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"id": "1",
4+
"label": " A "
5+
},
6+
{
7+
"id": "2",
8+
"label": " B "
9+
},
10+
{
11+
"id": "3",
12+
"label": " C "
13+
},
14+
{
15+
"id": "4",
16+
"label": " D "
17+
},
18+
{
19+
"id": "5",
20+
"label": " E "
21+
}
22+
]
232 KB
Loading
235 KB
Loading

0 commit comments

Comments
 (0)