Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最初图表已被渲染,但是当在图表上单击/拖动时,框(矩形和端口)被隐藏在 Firefox 中。但它在 Chrome 中按预期工作。
你能告诉我什么可能是错的。
使用的技术栈是:Angularjs Bootstrap
在我的情况下,当缩放我的纸张(用于缩放功能)时发生了这个错误。
我很快修复了它,在做完缩放后做了一点1px 的平移和超时
paper.scale(scaleValue); ... setTimeout(function(){ paper.translate(paper.translate().tx + 1, paper.translate().ty + 1); }, 1);