- SVG 演示
- SVG - 装载机
- SVG - 对话框
- SVG-图标
- SVG - 时钟
- SVG - 拖动
- SVG - 关键点
- SVG - 地图
- SVG-amChart
- SVG - 图形
- SVG - 平面阴影
- SVG - 图像过滤器
- SVG - 文本效果
- SVG - 带有 CSS 效果的文本
- SVG - 箭头效果
- SVG - 品牌效应
- SVG - 粘糊糊的效果
- SVG - 渐变效果
- SVG - 有趣的效果
- SVG - 滚动效果
- SVG - 副秀效果
- SVG - 选项卡效果
- SVG - Raphael.js 效果
- SVG - Velocity.js 效果
- SVG - Walkway.js 效果
- SVG - zPath.js 效果
- SVG - Vague.js 效果
- SVG - 变换效果
- SVG - 全屏叠加效果
- SVG - Lazylinepainter.js 效果
- SVG - 演示游戏
- SVG - 实时 SVG AD
- SVG 有用资源
- SVG - 问题与解答
- SVG - 快速指南
- SVG - 有用的资源
- SVG - 讨论
SVG - 链接
<a> 元素用于创建超链接。“xlink:href”属性用于传递IRI(国际化资源标识符),它是URI(统一资源标识符)的补充。
宣言
以下是<a>元素的语法声明。我们仅展示了主要属性。
<a xlink:show = "new" | "replace" xlink:actuate = "onRequest" xlink:href = "<IRI>" target = "_replace" | "_self" | "_parent" | "_top" | "_blank" | "<XML-Name>" > </a>
属性
先生。 | 名称和描述 |
---|---|
1 | xlink:show - 用于 XLink 感知处理器的文档目的。默认是新的。 |
2 | xlink:actuate - 用于 XLink 感知处理器的文档目的。 |
3 | xlink:href - 引用对象的位置。 |
4 | target - 当结束资源的目标可能时使用。 |
例子
测试SVG.htm<html> <title>SVG Linking</title> <body> <h1>Sample Link</h1> <svg width="800" height="800"> <g> <a xlink:href="http://www.tutorialspoint.com"> <text x="0" y="15" fill="black" > Click me to load TutorialsPoint DOT COM.</text> </a> </g> <g> <text x="0" y="65" fill="black" > Click in the rectangle to load TutorialsPoint DOT COM</text> <a xlink:href="http://www.tutorialspoint.com"> <rect x="100" y="80" width="300" height="100" style="fill:rgb(121,0,121);stroke-width:3;stroke:rgb(0,0,0)" /> </a> </g> </svg> </body> </html>
输出
在 Chrome Web 浏览器中打开 textSVG.htm。您可以使用Chrome/Firefox/Opera直接查看SVG图像,无需任何插件。Internet Explorer 9 及更高版本还支持 SVG 图像渲染。单击链接和矩形即可查看结果。
打印