可伸缩矢量图形 ‹svg›

Exisi 2020-06-09 14:05:15
Categories: Tags:

 

 

 

 

什么是SVG

 

 

 

 

示例

 

<!DOCTYPE html>

<html>

 

<head>

    <meta charset="UTF-8" />

    <title>HTML/SVG Example</title>

</head>

 

<body>

 

    <svg width="150" height="100" viewBox="0 0 3 2">

        <rect width="1" height="2" x="0" fill="#008d46" />

        <rect width="1" height="2" x="1" fill="#ffffff" />

        <rect width="1" height="2" x="2" fill="#d2232c" />

    </svg>

 

</body>

 

</html>

 

浏览器运行结果如下:

 

 

来自 <https://developer.mozilla.org/zh-CN/docs/Web/SVG/Element/svg>