SVG Text - <text>
Le <text> élément est utilisé pour définir un texte.
Exemple 1
Écrire un texte:
Voici le code SVG:
Exemple
<svg height="30" width="200">
<text x="0" y="15" fill="red">I
love SVG!</text>
</svg>
Essayez - le vous - même » exemple 2
Faire pivoter le texte:
Voici le code SVG:
Exemple
<svg height="60" width="200">
<text x="0" y="15" fill="red"
transform="rotate(30 20,40)">I
love SVG</text>
</svg>
Essayez - le vous - même » exemple 3
Le <text> élément peut être disposé dans un certain nombre de sous-groupes avec le <tspan> élément. Chaque <tspan> élément peut contenir la mise en forme et la position différente.
Texte sur plusieurs lignes (with the <tspan> element) :
Voici le code SVG:
Exemple
<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>
Essayez - le vous - même » exemple 4
Texte de lien (with the <a> element) :
Voici le code SVG:
Exemple
<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>
Essayez - le vous - même »