-
Notifications
You must be signed in to change notification settings - Fork 23
/
demo-animate-end.html
98 lines (75 loc) · 1.87 KB
/
demo-animate-end.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
<!DOCTYPE>
<html>
<head>
<title>cytoscape-euler.js demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.5.0/bluebird.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.min.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="cytoscape-euler.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: 'random'
},
style: [
{
selector: 'node',
style: {
'content': 'data(name)'
}
},
{
selector: 'edge',
style: {
'target-arrow-shape': 'triangle'
}
},
{
selector: ':selected',
style: {
}
}
],
elements: fetch('./example-graphs/planar-chain.json').then(function( res ){ return res.json(); })
});
cy.ready( function(){ // wait for graph data to load
cy.layout({
name: 'euler',
animate: 'end',
animationDuration: 3000,
animationEasing: 'spring(500, 40)'
}).run();
} );
});
</script>
</head>
<body>
<h1>cytoscape-euler animate:end demo</h1>
<div id="cy"></div>
</body>
</html>