jsplumb - 从 div 的所有侧面拖放连接
我正在使用 jsplumb 制作流程图编辑器。在 jsplumb 的流程图连接器演示中,我们可以从 div 的一侧进行拖放连接,我希望该 div 接受并从所有四个侧面建立连接。
谢谢。
I am making a flowchart editor using jsplumb. In flowchart connector demo of jsplumb, we could make drag and drop connection from one side of div, i want that div to accept and make connection from all four sides.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用endpointoption
并设置isSource:true, isTarget:true
使每个端点扮演两个角色
use endpointoption
and set isSource:true, isTarget:true
to make each endpoint play both role
如果您希望端点移动到 div 的任何一侧,那么您应该使用动态锚点:
即可避免这种情况,您可以使用默认动态锚点来代替
例如添加时,端点可以这样指定:
要尝试它,使用这个fiddler
有关详细信息,请参阅 jsPlumb 文档
If you want endpoints to move to any side of the div, then you should use Dynamic Anchors:
To avoid that you can use Default Dynamic Anchor instead
For example when adding, endpoint can be specified like this:
To try it, use this fiddler
Refer to jsPlumb docs for more info