我正在寻找一种让QTip同时显示Cytoscape.js图中每个节点的工具提示的方法,以便它们始终显示并固定在图中的节点上,而用户无需单击或将鼠标悬停在节点。
我接近以下代码:
$(document).ready(function(){
cy.nodes().qtip({
content: function(){ return 'Station: ' + this.id() +
'</br> Next Train: ' + this.data('nextTrain') +
'</br> Connections: ' + this.degree();
},
hide: false,
show: {
when: false,
ready: true
}
})
})
上面的代码在$ {document).ready上显示了工具提示,但是它们都位于Cytoscape图的一个节点上,并且当我放大或平移时它们都消失了。
目标是使工具提示固定在图形中的每个节点上,这样当我放大和平移时,它们会固定在该节点上。我不确定是否仅使用Cytoscape(即多功能标签)就能更轻松地做到这一点。
我正在使用Qtip2,jQuery-2.0.3和cytoscape.js的最新版本
非常感谢您的帮助。
答案 0 :(得分:0)
编辑:如果要自动创建这些元素,请使用函数和循环遍历cy.nodes():
{"description": "test", "category": {"id": 1}}
如果您想要粘性qTip,我建议使用 popper.js 的cytoscape扩展,特别是 tippy版本(粘性div):
var makeTippy = function (nodeTemp, node) {
return tippy(node.popperRef(), {
html: (function () {
let div = document.createElement('div');
// do things in div
return div;
})(),
trigger: 'manual',
arrow: true,
placement: 'right',
hideOnClick: false,
multiple: true,
sticky: true
}).tooltips[0];
};
var nodes = cy.nodes();
for (var i = 0; i < nodes.length; i++) {
var tippy = makeTippy(nodes[i]);
tippy.show();
}
document.addEventListener('DOMContentLoaded', function() {
var cy = window.cy = cytoscape({
container: document.getElementById('cy'),
style: [{
selector: 'node',
style: {
'content': 'data(id)'
}
},
{
selector: 'edge',
style: {
'curve-style': 'bezier',
'target-arrow-shape': 'triangle'
}
}
],
elements: {
nodes: [{
data: {
id: 'a'
}
},
{
data: {
id: 'b'
}
}
],
edges: [{
data: {
source: 'a',
target: 'b'
}
}]
},
layout: {
name: 'grid'
}
});
var a = cy.getElementById('a');
var b = cy.getElementById('b');
var makeTippy = function(node, text) {
return tippy(node.popperRef(), {
html: (function() {
var div = document.createElement('div');
div.innerHTML = text;
return div;
})(),
trigger: 'manual',
arrow: true,
placement: 'bottom',
hideOnClick: false,
multiple: true,
sticky: true
}).tooltips[0];
};
var tippyA = makeTippy(a, 'foo');
tippyA.show();
var tippyB = makeTippy(b, 'bar');
tippyB.show();
});
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: 1;
}
h1 {
opacity: 0.5;
font-size: 1em;
font-weight: bold;
}
/* makes sticky faster; disable if you want animated tippies */
.tippy-popper {
transition: none !important;
}
我认为让div坚持住时,popper才更容易处理