SVG <text>


SVG Text - <text>

<text> 要素は、テキストの定義に使用します。


例 1

テキストを書く:

I love SVG! Sorry, your browser does not support inline SVG.

SVG コードは次の通りです:

<svg height="30" width="200">
  <text x="0" y="15" fill="red">I love SVG!</text>
</svg>
Try it Yourself »

例 2

テキストを回転する:

I love SVG Sorry, your browser does not support inline SVG.

SVG コードは次の通りです:

<svg height="60" width="200">
  <text x="0" y="15" fill="red" transform="rotate(30 20,40)">I love SVG</text>
</svg>
Try it Yourself »

例 3

<text> 要素は、<tspan> 要素により任意のサブグループ数にアレンジすることができます。 各 <tspan> 要素は、それぞれ異なる書式や位置を含むことができます。

(<tspan> 要素を持つ)複数行のテキスト:

Several lines: First line. Second line. Sorry, your browser does not support inline SVG.

SVG コードは次の通りです:

<svg height="90" width="200">
  <text x="10" y="20" style="fill:red;">Several lines:
    <tspan x="10" y="45">First line.</tspan>
    <tspan x="10" y="70">Second line.</tspan>
  </text>
</svg>
Try it Yourself »

例 4

(<a> 要素を持つ) リンクとしてのテキスト:

I love SVG! Sorry, your browser does not support inline SVG.

SVG コードは次の通りです:

<svg height="30" width="200" xmlns:xlink="http://www.w3.org/1999/xlink">
  <a xlink:href="http://www.w3schools.com/svg/" target="_blank">
    <text x="0" y="15" fill="red">I love SVG!</text>
  </a>
</svg>
Try it Yourself »