This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
forked from cytoscape/cytoscape.js-klay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
92 lines (69 loc) · 1.82 KB
/
demo.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
<!doctype html>
<html>
<head>
<title>cytoscape-klay.js demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<!-- the demo uses fetch() -->
<script src="https://unpkg.com/[email protected]/js/browser/bluebird.js"></script>
<script src="https://unpkg.com/[email protected]/fetch.js"></script>
<script src="https://unpkg.com/cytoscape/dist/cytoscape.min.js"></script>
<!-- for testing with local version of cytoscape.js -->
<!--<script src="../cytoscape.js/build/cytoscape.js"></script>-->
<script src="https://unpkg.com/[email protected]/klay.js"></script>
<script src="cytoscape-klay.js"></script>
<style>
body {
font-family: helvetica neue, helvetica, liberation sans, arial, sans-serif;
font-size: 14px;
}
#cy {
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 999;
}
h1 {
opacity: 0.5;
font-size: 1em;
font-weight: bold;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function(){
var cy = window.cy = cytoscape({
container: document.getElementById('cy'),
// demo your layout
layout: {
name: 'klay',
// some more options here...
},
style: [
{
selector: 'node',
style: {
'background-color': '#dd4de2'
}
},
{
selector: 'edge',
style: {
'curve-style': 'bezier',
'target-arrow-shape': 'triangle',
'line-color': '#dd4de2',
'target-arrow-color': '#dd4de2',
'opacity': 0.5
}
}
],
elements: fetch('./example-graphs/planar-chain.json').then(function( res ){ return res.json(); })
});
});
</script>
</head>
<body>
<h1>cytoscape-klay demo</h1>
<div id="cy"></div>
</body>
</html>