SVG testo - <text>
Il <text> elemento viene utilizzato per definire un testo.
esempio 1
Scrivere un testo:
Ecco il codice SVG:
Esempio
<svg height="30" width="200">
<text x="0" y="15" fill="red">I
love SVG!</text>
</svg>
Prova tu stesso " esempio 2
Ruotare il testo:
Ecco il codice SVG:
Esempio
<svg height="60" width="200">
<text x="0" y="15" fill="red"
transform="rotate(30 20,40)">I
love SVG</text>
</svg>
Prova tu stesso " esempio 3
Il <text> elemento può essere organizzato in qualsiasi numero di sottogruppi con il <tspan> elemento. Ogni <tspan> elemento può contenere la formattazione e la posizione diversa.
Testo su più linee (with the <tspan> element) :
Ecco il codice SVG:
Esempio
<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>
Prova tu stesso " esempio 4
Testo come collegamento (with the <a> element) :
Ecco il codice SVG:
Esempio
<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>
Prova tu stesso "