-
Notifications
You must be signed in to change notification settings - Fork 83
/
demo-adaptative.html
199 lines (170 loc) · 4.08 KB
/
demo-adaptative.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html>
<head>
<title>cytoscape-cxtmenu.js demo with adaptative spotlight</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<link href="https://unpkg.com/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<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-cxtmenu.js"></script>
<style>
body {
font-family: helvetica;
font-size: 14px;
overflow: hidden;
}
#cy {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 999;
}
h1 {
opacity: 0.5;
font-size: 1em;
}
/* you can set the disabled style how you like on the text/icon */
.cxtmenu-disabled {
opacity: 0.333;
}
</style>
<script>
window.addEventListener('DOMContentLoaded', function(){
var cy = window.cy = cytoscape({
container: document.getElementById('cy'),
ready: function(){
},
style: [
{
selector: 'node',
css: {
'content': 'data(name)'
}
},
{
selector: 'node[id="j"]',
css: {
'width': 100,
'height': 100,
}
},
{
selector: 'node[id="e"]',
css: {
'width': 150,
'height': 150,
}
},
{
selector: 'node[id="k"]',
css: {
'width': 20,
'height': 20,
}
},
{
selector: 'edge',
css: {
'curve-style': 'bezier',
'target-arrow-shape': 'triangle'
}
}
],
elements: {
nodes: [
{ data: { id: 'j', name: 'Non-adaptative spotlight medium node' } },
{ data: { id: 'e', name: 'Adaptative spotlight big node' } },
{ data: { id: 'k', name: 'Adaptative spotlight small node' } },
{ data: { id: 'g', name: 'Non-adaptative normal node' } }
],
edges: [
{ data: { source: 'j', target: 'e' } },
{ data: { source: 'j', target: 'k' } },
{ data: { source: 'j', target: 'g' } },
{ data: { source: 'e', target: 'j' } },
{ data: { source: 'e', target: 'k' } },
{ data: { source: 'k', target: 'j' } },
{ data: { source: 'k', target: 'e' } },
{ data: { source: 'k', target: 'g' } },
{ data: { source: 'g', target: 'j' } }
]
}
});
cy.cxtmenu({
selector: 'node[id="j"], node[id="g"], edge',
adaptativeNodeSpotlightRadius: false,
commands: [
{
content: '<span class="fa fa-flash fa-2x"></span>',
select: function(ele){
console.log( ele.id() );
}
},
{
content: '<span class="fa fa-star fa-2x"></span>',
select: function(ele){
console.log( ele.data('name') );
},
enabled: false
},
{
content: 'Text',
select: function(ele){
console.log( ele.position() );
}
}
]
});
cy.cxtmenu({
selector: 'node[id="e"], node[id="k"]',
adaptativeNodeSpotlightRadius: true,
commands: [
{
content: '<span class="fa fa-flash fa-2x"></span>',
select: function(ele){
console.log( ele.id() );
}
},
{
content: '<span class="fa fa-star fa-2x"></span>',
select: function(ele){
console.log( ele.data('name') );
},
enabled: false
},
{
content: 'Text',
select: function(ele){
console.log( ele.position() );
}
}
]
});
cy.cxtmenu({
selector: 'core',
commands: [
{
content: 'bg1',
select: function(){
console.log( 'bg1' );
}
},
{
content: 'bg2',
select: function(){
console.log( 'bg2' );
}
}
]
});
});
</script>
</head>
<body>
<h1>cytoscape-cxtmenu demo with adaptative spotlight</h1>
<div id="cy"></div>
</body>
</html>