解决方法
这是使用模式的示例.它使用< tspan>具有图案填充的元素,以显示如何根据需要在每个字符的基础上完成此操作:
演示:http://jsfiddle.net/xWNR3/2/
<svg xmlns="http://www.w3.org/2000/svg" xmlns:x="http://www.w3.org/1999/xlink"> <style> svg { background:#ddd } text { font-family:Verdana; font-size:160pt; font-weight:bold; stroke:#000; } </style> <defs> <pattern id="p1" patternUnits="userSpaceOnUse" width="32" height="32"> <image x:href="alphaball.png" width="32" height="32" /> </pattern> <pattern id="p2" patternUnits="userSpaceOnUse" width="10" height="10"> <image x:href="grid.gif" width="10" height="10" /> </pattern> </defs> <text x="20" y="170" fill="url(#p1)"> Hello <tspan x="20" y="350" fill="url(#p2)">Wo<tspan fill="url(#p1)">r</tspan>ld</tspan> </text> </svg>
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。