SVG ข้อความ - <text>
<text> องค์ประกอบที่จะใช้ในการกำหนดข้อความ
ตัวอย่างที่ 1
เขียนข้อความ:
นี่คือรหัส SVG นี้:
ตัวอย่าง
<svg height="30" width="200">
<text x="0" y="15" fill="red">I
love SVG!</text>
</svg>
ลองตัวเอง» ตัวอย่างที่ 2
หมุนข้อความ:
นี่คือรหัส SVG นี้:
ตัวอย่าง
<svg height="60" width="200">
<text x="0" y="15" fill="red"
transform="rotate(30 20,40)">I
love SVG</text>
</svg>
ลองตัวเอง» ตัวอย่างที่ 3
<text> องค์ประกอบสามารถจัดในจำนวนใด ๆ ของกลุ่มย่อยกับ <tspan> องค์ประกอบ แต่ละ <tspan> องค์ประกอบที่สามารถมีการจัดรูปแบบที่แตกต่างกันและตำแหน่ง
ข้อความหลายบรรทัด (with the <tspan> element) :
นี่คือรหัส SVG นี้:
ตัวอย่าง
<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>
ลองตัวเอง» ตัวอย่างที่ 4
ข้อความเป็นลิงค์ (with the <a> element) :
นี่คือรหัส SVG นี้:
ตัวอย่าง
<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>
ลองตัวเอง»