This repository was archived by the owner on Jul 22, 2025. It is now read-only.
forked from cytoscape/cytoscape.js-cxtmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
153 lines (128 loc) · 3.82 KB
/
demo.html
File metadata and controls
153 lines (128 loc) · 3.82 KB
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
<!DOCTYPE html>
<html>
<head>
<title>cytoscape-cxtmenu.js demo</title>
<meta content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1" name="viewport">
<link href="https://unpkg.com/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<!-- <script src="ext/eruda.min.js"></script>-->
<script src="ext/cytoscape.min.js"></script>
<!-- for testing with local version of cytoscape.js -->
<!--<script src="../cytoscape.js/build/cytoscape.js"></script>-->
<!-- <script>eruda.init();</script>-->
<script src="cytoscape-cxtmenu.js"></script>
<style>
body {
font-family: helvetica;
font-size: 14px;
overflow: hidden;
}
#cy {
width: 100%;
height: 400px;
position: absolute;
left: 0;
top: 0;
}
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',
openMenuEvents: 'tap',
commands: [
{
content: '<span class="fa fa-flash fa-2x"></span>',
select: function (ele) {
console.log(ele.id());
// alert(ele.id());
}
},
{
content: '<span class="fa fa-star fa-2x"></span>',
select: function (ele) {
console.log(ele.data('name'));
// alert(ele.data('name'));
}
},
{
content: 'Text',
select: function (ele) {
console.log(JSON.stringify(ele.position()));
// alert(JSON.stringify(ele.position()));
}
}
]
});
cy.cxtmenu({
selector: 'core',
openMenuEvents: 'taphold',
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>