当 div 动画时,jsPlumb 没有正确添加 EndPoints
当节点 div 动画时,jsPlumb 似乎错误地放置了 EndPoints。端点(最初)放置在 [0,0] 处,并且不连接到移动的 div。
当拖动 div 时,端点会更新并正确附加到 div。这个问题在这个小提琴中得到了演示。
http://jsfiddle.net/rishabhsagar/aT63t/27/
请帮忙!
jsPlumb seems to incorrectly place the EndPoints when the node div is animated. The endpoints are placed (initially) at [0,0] and not connected to the moving div.
When the div is dragged, then the end points get updated and attah to the divs correctly. The problem is demostrated in this fiddle.
http://jsfiddle.net/rishabhsagar/aT63t/27/
Please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为 jsPlumb 不希望第三个参数是字符串;它正在等待一个物体。
试试这个小提琴:
http://jsfiddle.net/sporritt/QpLJU/10/
i只是用 {duration:"slow"} 替换了“slow”。
it's because jsPlumb is not expecting the third argument to be a string; it's expecting an object.
try this fiddle instead:
http://jsfiddle.net/sporritt/QpLJU/10/
i just replaced "slow" with {duration:"slow"}.