我剛纔有這個非常簡單的svg;SVG中的viewbox和圖標定位
<div>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 194 186" class="circliful">
<g stroke="#ccc">
<line x1="133" y1="50" x2="140" y2="40" stroke-width="2"></line>
</g>
<g stroke="#ccc">
<line x1="140" y1="40" x2="200" y2="40" stroke-width="2"></line>
</g>
<circle cx="100" cy="100" r="57" class="border" fill="#eee" stroke="none" stroke-width="15" stroke-dasharray="360" transform="rotate(-90,100,100)"></circle>
<circle class="circle" cx="100" cy="100" r="57" fill="none" stroke="#3498DB" stroke-width="5" stroke-dasharray="180, 20000" transform="rotate(-90,100,100)"></circle>
<text text-anchor="middle" x="100" y="110" class="icon" style="font-size: 40px" fill="#3498DB"></text>
<text class="timer" text-anchor="middle" x="175" y="35" style="font-size: 22px; undefined;" fill="#aaa">50%</text>
</svg>
</div>
svg元素的視框是viewBox="0 0 194 300"
並在圖標的屬性y
是y="110"
,我的問題是,爲Y attibute有意110
??
I.E.如果我想中心的圖標,我將做到以下幾點:
(186/2)+ (height of icon/2) // 186 is the height of the viewbox
我是正確的假設,110的值就加到視框的高度?
所以選擇110的主要原因是因爲圓的大小是100?當然還有你提到的其他原因! –
與圈子的大小無關。這個圈子有多大並不重要。這裏圓的直徑是114(半徑= 57)。但它可能是200,y座標不會改變。圓的中心在y = 100。字體大小爲22.因此,文本的基線(y座標)將在大約100+(22/2)= 111處。那麼由於字體的形狀,可能(如在這種情況下)稍微調整了一點。 –