SVG是一種以快速開發和高效能為目標來開發圖形的Google XML格式語言。
它有以下特點 -
SVG有以下優點 -
SVG有以下缺點 -
以下XML片段可用於在Web瀏覽器中繪製圓圈。
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="red" stroke-width="2" fill="green" />
</svg>
將SVG XML直接嵌入HTML頁面 - test-svg.html
<html>
<title>SVG Image</title>
<body>
<h1>Sample SVG Image</h1>
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="red" stroke-width="2" fill="green" />
</svg>
</body>
</html>
儲存上面程式碼,並使用瀏覽器瀏覽 -
注意:可以使用Chrome/Firefox/Opera直接檢視SVG影象,無需任何外掛。 在Internet Explorer中,需要使用activeX控制元件才能檢視SVG影象。
<svg>
元素表示SVG影象的開始。<svg>
元素的width
和height
屬性定義了SVG影象的高度和寬度。<circle>
元素來繪製一個圓。cx
和cy
屬性表示圓的中心。 預設值是(0,0)
。 r
屬性表示圓的半徑。fill
屬性定義了圓的填充顏色。</ svg>
標記指示SVG影象的結束。