SVg中的链接用法示例

【SVg中的链接用法示例】< a> 元素用于链接。 < a> 元素包含一个图形, 当你单击它时该图形将变为活动状态。
例子

< !DOCTYPE html> < html> < title> SVG Animation< /title> < body> < svg height="450" width="450"> < a xlink:href="http://www.srcmini.com/download.jpg"> < text x="60" y="40" style="font-size: 18pt; "> Dog< /text> < /a> < a xlink:href="https://www.srcmini.com/"> < circle cx="50" cy="80" r="20" style="fill: red; "/> < rect x="90" y="60" width="40" height="40" style="fill: green; "/> < /a> < /svg> < /body> < /html>

立即测试

    推荐阅读