tutorial pengembangan web terbaru
 

SVG <Text>


SVG Text - <text>

The <text> elemen digunakan untuk mendefinisikan sebuah teks.


contoh 1

Menulis teks:

Saya suka SVG! Maaf, browser Anda tidak mendukung SVG inline.

Berikut adalah kode SVG:

Contoh

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

contoh 2

Memutar teks:

Maaf, browser Anda tidak mendukung SVG inline.

Berikut adalah kode SVG:

Contoh

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

contoh 3

The <text> elemen dapat diatur dalam sejumlah sub-kelompok dengan <tspan> elemen. Setiap <tspan> elemen dapat berisi format dan posisi yang berbeda.

Teks pada beberapa baris (with the <tspan> element) :

Beberapa baris: Garis pertama. Baris kedua. Maaf, browser Anda tidak mendukung SVG inline.

Berikut adalah kode SVG:

Contoh

<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>
Cobalah sendiri "

contoh 4

Teks sebagai link (with the <a> element) :

Saya suka SVG! Maaf, browser Anda tidak mendukung SVG inline.

Berikut adalah kode SVG:

Contoh

<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>
Cobalah sendiri "