En son web geliştirme öğreticiler
 

SVG <text>


SVG Metin - <text>

<text> elemanı metni tanımlamak için kullanılır.


Örnek 1

Bir metni yazın:

Ben SVG seviyorum! Maalesef tarayıcınız satır içi SVG desteklemiyor.

İşte SVG kodu:

Örnek

<svg height="30" width="200">
  <text x="0" y="15" fill="red">I love SVG!</text>
</svg>
Kendin dene "

Örnek 2

Metin döndürme:

dönüşümü = "dönüşümlü (30 20,40)"> Ben SVG seviyorum Maalesef tarayıcınız satır içi SVG desteklemiyor.

İşte SVG kodu:

Örnek

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

Örnek 3

<text> elemanı alt-gruplar herhangi bir sayıda düzenlenebilir <tspan> elemanı. Her <tspan> eleman farklı biçimlendirme ve konumunu içerebilir.

Birkaç hatlarda Metin (with the <tspan> element) :

Bir kaç kuşak: İlk satır. İkinci çizgi. Maalesef tarayıcınız satır içi SVG desteklemiyor.

İşte SVG kodu:

Örnek

<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>
Kendin dene "

Örnek 4

Bir bağlantı olarak Metin (with the <a> element) :

Ben SVG seviyorum! Maalesef tarayıcınız satır içi SVG desteklemiyor.

İşte SVG kodu:

Örnek

<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>
Kendin dene "