SVG <text>
SVG 文本 -<text>
这<text>元素用于定义文本。
示例 1
写一段文字:
以下是 SVG 代码:
示例 2
旋转文本:
以下是 SVG 代码:
例子
<svg height="60" width="200">
<text x="0" y="15" fill="red" transform="rotate(30 20,40)">我喜欢 SVG</text>
</svg>
亲自尝试 »
示例 3
这<text>元素可以排列在任意数量的子组中,其中<tspan>元素。每个<tspan>元素可以包含不同的格式和位置。
多行文本(使用<tspan>元素):
以下是 SVG 代码:
例子
<svg height="90" width="200">
<text x="10" y="20" style="fill:red;">几行:
<tspan x="10" y="45">第一行。</tspan>
<tspan x="10" y="70">第二行。</tspan>
</text>
</svg>
亲自尝试 »
示例 4
文本作为链接(带有<a>元素):</a>
以下是 SVG 代码:
例子
<svg height="30" width="200" xmlns:xlink="http://www.w3.org/1999/xlink">
<a xlink:href="https://www.w3schools.com/graphics/" target="_blank">
<text x="0" y="15" fill="red">我喜欢 SVG!</text>
</a>
</svg>
亲自尝试 »