我一直在搜索遍布stackoverflow和谷歌找到一个原因,为什么我的代码不起作用。我正在尝试将图像作为圆形的填充,但它只显示为黑色。这就是我所拥有的。
<svg width="100%" height="99%">
<defs>
<pattern id="tile-ww" x="0" y="0" patternunits="userSpaceOnUse" width="24" height="24">
<img xlink:href="distributor-sprite.png" width="24" height="24" x="0" y="0">
</pattern>
<pattern id="tile-us" x="0" y="0" patternunits="userSpaceOnUse" width="24" height="24">
<img xlink:href="distributor-sprite.png" width="24" height="24" x="0" y="0">
</pattern>
</defs>
<g id="stage" transform="translate(80,10)">
<g class="node" transform="translate(380,44.375)">
<rect class="name" ry="3" rx="3" height="15" x="-32" width="32"></rect>
<circle r="54.5" id="circle-4" fill="url(#tile-ww)"></circle>
<text id="text-4" x="-10" dy=".35em" text-anchor="end" z="1">Jon</text>
</g>
</g>
</svg>
我也试过用css应用模式,但无济于事
.node circle {
cursor: pointer;
stroke: #282828;
stroke-width: 1.5px;
fill: url(#tile-ww);
}
我有双重和三重检查图像是否正确。我尝试了相对和绝对的路径,但没有运气。
答案 0 :(得分:3)
在<image />
defs中使用<img />
代替pattern
。为我工作!
<img>
是HTML5规范元素,而<image>
是SVG规范的一部分。更多信息请访问:http://www.w3.org/TR/SVG/struct.html#ImageElement