-
Notifications
You must be signed in to change notification settings - Fork 83
/
demo.html
151 lines (123 loc) · 2.93 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
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
<!DOCTYPE html>
<html>
<head>
<title>cytoscape-cxtmenu.js demo</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: 'edge',
css: {
'curve-style': 'bezier',
'target-arrow-shape': 'triangle'
}
}
],
elements: {
nodes: [
{ data: { id: 'j', name: 'Jerry' } },
{ data: { id: 'e', name: 'Elaine' } },
{ data: { id: 'k', name: 'Kramer' } },
{ data: { id: 'g', name: 'George' } }
],
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, edge',
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</h1>
<div id="cy"></div>
</body>
</html>