右键单击Cytoscape js qtip
Cytoscape js qtip on right click
我试图在节点的右键单击事件中显示 qtip。
我已经在鼠标悬停或单击事件上完成了,并且它们起作用了。但是我无法通过右键单击使其工作。
position: {
my: 'top left',
at: 'bottom right',
adjust: { method: 'none' }
},
style: {
classes: 'qtip-rounded'
},
show: {
event: 'mouseover'
}
有什么猜测吗?
我还检查了这个:http://qtip2.com/guides#events.rightclick
它对我不起作用。
您不能像 qtip 文档建议的那样使用 DOM 事件,因为图形元素不是 HTMLElements。你应该使用 Cytoscape 事件。
cxttap
: http://js.cytoscape.org/#events/user-input-device-events
我试图在节点的右键单击事件中显示 qtip。 我已经在鼠标悬停或单击事件上完成了,并且它们起作用了。但是我无法通过右键单击使其工作。
position: {
my: 'top left',
at: 'bottom right',
adjust: { method: 'none' }
},
style: {
classes: 'qtip-rounded'
},
show: {
event: 'mouseover'
}
有什么猜测吗? 我还检查了这个:http://qtip2.com/guides#events.rightclick 它对我不起作用。
您不能像 qtip 文档建议的那样使用 DOM 事件,因为图形元素不是 HTMLElements。你应该使用 Cytoscape 事件。
cxttap
: http://js.cytoscape.org/#events/user-input-device-events