這篇文章給大家分享的內容是關於svg標籤:
text 屬性
x: 文字繪製x軸位置
y: 文字繪製y軸位置
dx: 每個字元相對前一個字元的偏移距離
dy: 每個字元相對前一個字元的偏移距離
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"> <text x="100" y="100" dy="100" fill="black" style="font-size:40px;"> <tspan fill="blue" dy="-20 10">我是</tspan><tspan fill="red">中国人</tspan> </text> <path d="M100,0 V200 M0,100 H200" stroke="red"/> </svg>
文字水平垂直居中
#水平排列
text-anchor屬性可設定文字水平排列,有三個取值start | middle | end
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"> <text x="200" y="50" text-anchor="start" fill="black" style="font-size:40px;">我是中国人</text> <text x="200" y="100" text-anchor="middle" fill="black" style="font-size:40px;">我是中国人</text> <text x="200" y="150" text-anchor="end" fill="black" style="font-size:40px;">我是中国人</text> <path d="M200,0 V200 M0,100 H400" stroke="red"/> </svg>
#
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"> <path id="p1" d="M100,200 Q200 100 300 200 T 500 200" stroke="green" fill="none"/> <text style="font-size:20px;"> <textPath xlink:href="#p1">我是根据固定曲线来绘制的文字方向</textPath> </text> </svg>
超出Path的部分,瀏覽器不進行渲染。
路徑上文字的偏移可以用定位屬性 x, y, dx, dy,text-anchor 和 startOffset 屬性 。
x/dx/startOffset可以設定字元在路徑上的渲染起點。
y屬性設定是沒有任何效果的。
dy可設定字元在法線上的偏移。
text-anchor是設定文字水平排列效果。
相關文章推薦:
##svg中< ;marker>元素的使用及marker屬性的介紹
以上是svg標籤: