繁体   English   中英

用图像填充的SVG路径(椭圆形)不起作用(MacOS上的Chrome除外)

[英]SVG path (ellipse) fill with image does not work (except Chrome on MacOS)

创建了一个带有椭圆的简单SVG。 我希望该椭圆充满外部图像。 在MacOS的Chrome上显示为OK,但在其他代理上则显示为OK。 怎么了 ? 在这里搜索了很多其他问题,但似乎没有帮助。

码笔

 <svg version="1.2" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="100px" y="100px" viewBox="0 0 177.5 175" xml:space="preserve"> <defs> <pattern id="image" x="0" y="0" patternUnits="userSpaceOnUse" height="200" width="200"> <image x="100" y="1000" xlink:href="http://i.imgur.com/7Nlcay7.jpg"></image> </pattern> </defs> <ellipse id="FillThisWithColorOrPattern" style="fill:url(#image)" stroke="#333333" stroke-miterlimit="10" cx="90" cy="87" rx="87.5" ry="82"/> <circle id="Inner_1_" fill="#FF0000" cx="90" cy="87" r="35"/> <path id="TextLine1_Path" fill=None d="M90,137.5c-27.8,0-50.5-22.7-50.5-50.5S62.2,36.5,90,36.5s50.5,22.7,50.5,50.5S117.8,137.5,90,137.5z M90,37.5 c-27.3,0-49.5,22.2-49.5,49.5s22.2,49.5,49.5,49.5c27.3,0,49.5-22.2,49.5-49.5S117.3,37.5,90,37.5z"/> <text>    <textPath xlink:href="#TextLine1_Path">      The quick brown fox jumps over the lazy dog.    </textPath>  </text> </svg> 

看来您必须为其他浏览器指定图像的宽度和高度。 我在MacOS上使用Firefox 58和Safari 11进行了尝试,并且有这种模式。

<image x="0" y="0" xlink:href="http://i.imgur.com/7Nlcay7.jpg" width="200" height="200"/>

这是您更新的示例: https : //codepen.io/anon/pen/RJeMda

另外,请注意,自SVG 2起,不建议使用xlink:href 。您现在应该使用href MDN文档添加:

对于实现href的浏览器,如果同时设置了href和xlink:href,则xlink:href将被忽略,仅使用href。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM