SVG描邊屬性
SVG提供多種行程特性。 在本章中,我們將著眼於以下內容:
- 行程
- 筆劃寬度
- 中風的linecap
- 中風dasharray
所有的衝程特性可以應用於任何種類的線,文本和像一個圓的元素輪廓。
SVG筆觸屬性
行程屬性定義元素的線條,文字或輪廓的顏色:
下面是SVG代碼:
例
<svg height="80" width="300">
<g fill="none">
<path stroke="red" d="M5 20 l215 0" />
<path stroke="black" d="M5 40 l215 0" />
<path stroke="blue" d="M5 60 l215 0" />
</g>
</svg>
試一試» SVG筆劃寬度屬性
筆劃寬度屬性定義的元件的線,文字或輪廓的厚度:
下面是SVG代碼:
例
<svg height="80" width="300">
<g fill="none" stroke="black">
<path stroke-width="2" d="M5 20 l215 0" />
<path stroke-width="4" d="M5 40 l215 0" />
<path stroke-width="6" d="M5 60 l215 0" />
</g>
</svg>
試一試» SVG中風的linecap物業
該行程的linecap屬性開放路徑定義不同類型的結局:
下面是SVG代碼:
例
<svg height="80" width="300">
<g fill="none" stroke="black" stroke-width="6">
<path stroke-linecap="butt" d="M5 20 l215 0" />
<path stroke-linecap="round" d="M5 40 l215 0" />
<path stroke-linecap="square" d="M5 60 l215 0" />
</g>
</svg>
試一試» SVG行程dasharray物業
衝程dasharray屬性用於創建虛線:
下面是SVG代碼:
例
<svg height="80" width="300">
<g fill="none" stroke="black" stroke-width="4">
<path stroke-dasharray="5,5" d="M5 20 l215 0" />
<path stroke-dasharray="10,10" d="M5 40 l215 0" />
<path stroke-dasharray="20,10,5,5,5,10" d="M5 60 l215 0" />
</g>
</svg>
試一試»