jsPlumb:拖动端点时放大和缩小问题

时间:2014-03-12 13:35:37

标签: php css html5 jsplumb

我想加载一个jsPlumb流程图,但是当我使用放大和缩小时遇到问题。添加点无法正确显示。

enter image description here

我使用了setZoom函数进行缩放。

提前致谢。

1 个答案:

答案 0 :(得分:2)

执行缩放操作时需要重新绘制jsPlumb对象:

jsPlumb.repaintEverything();

我认为你需要在setZoom()函数中包含上面的代码。

窗口调整大小的示例:

$( window ).resize(function() {
            jsPlumb.repaintEverything();
});