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.
使用d3.js强制布局,如果我想为一个节点嵌套一个图像和一个圆圈,我该怎么办?用 SVG 图像可以做到这一点吗?
目前我尝试了类似的方法,但它不起作用:
<svg> <g> <circle> ...... </circle> <image> ...... </image> </svg>
你有两个选择。您可以将图像声明为模式(例如参见此问题)或用于foreignObject嵌入 HTML 图像。
foreignObject