Ultimele tutoriale de dezvoltare web
 

SVG <text>


SVG Text - <text>

<text> Elementul este folosit pentru a defini un text.


Exemplul 1

Scrieți un text:

Îmi place SVG! Ne pare rău, browser-ul dvs. nu acceptă SVG inline.

Aici este codul SVG:

Exemplu

<svg height="30" width="200">
  <text x="0" y="15" fill="red">I love SVG!</text>
</svg>
Încearcă - l singur »

Exemplul 2

Rotiți textul:

transforma = "rotate (30 20,40)"> I love SVG Ne pare rău, browser-ul dvs. nu acceptă SVG inline.

Aici este codul SVG:

Exemplu

<svg height="60" width="200">
  <text x="0" y="15" fill="red" transform="rotate(30 20,40)">I love SVG</text>
</svg>
Încearcă - l singur »

Exemplul 3

<text> Elementul pot fi aranjate în orice număr de subgrupe cu <tspan> element. Fiecare <tspan> element poate conține diferite de formatare și poziție.

Text pe mai multe linii (with the <tspan> element) :

Mai multe linii: Prima linie. A doua linie. Ne pare rău, browser-ul dvs. nu acceptă SVG inline.

Aici este codul SVG:

Exemplu

<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>
Încearcă - l singur »

Exemplul 4

Text ca o legătură (with the <a> element) :

Îmi place SVG! Ne pare rău, browser-ul dvs. nu acceptă SVG inline.

Aici este codul SVG:

Exemplu

<svg height="30" width="200" xmlns:xlink="http://www.w3.org/1999/xlink">
  <a xlink:href="http://www.w3ii.com/svg/default.html" target="_blank">
    <text x="0" y="15" fill="red">I love SVG!</text>
  </a>
</svg>
Încearcă - l singur »