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.
我看到它被blue griffon 在单独的窗口中使用,但是否可以让它在适当的位置编辑 svg?
从理论上讲,您可以打开 svg-edit.html 并删除任何 html、head 和 body 标签并将页面内容移动到您的页面,然后在您的页面上加载 js/css 资源。
是否有特定的需要将其内联?如果需要,您仍然可以与 SVG-Edit 交互,即使它位于 iframe 中。例如,要获取用户正在编辑的 SVG 内容,您可以使用
var svgedit = window.frames[0]; svgedit.svgCanvas.svgCanvasToString();