欢迎访问服务器技术网-www.fuwuqijishu.com

SVG <polygon>

SVG fuwuqijishu 3年前 (2022-05-15) 191次浏览 0个评论 扫描二维码
文章目录[隐藏]

SVG <polygon>


SVG 多边形 – <polygon>

实例 1

<polygon> 标签用来创建含有不少于三个边的图形。

多边形是由直线组成,其形状是”封闭”的(所有的线条
连接起来)。

SVG <polygon>polygon来自希腊。 “Poly”
意味 “many” , “gon” 意味 “angle”.

下面是SVG代码:

实例

<svg height="210" width="500">
<polygon points="200,10 250,190 160,210"
style="fill:lime;stroke:purple;stroke-width:1"/>
</svg>

对于Opera用户: 查看SVG文件(右键单击SVG图形预览源)。

代码解析:

  • points 属性定义多边形每个角的 x 和 y 坐标

实例 2

下面的示例创建一个四边的多边形:

下面是SVG代码:

实例

<svg height="250" width="500">
<polygon points="220,10 300,210 170,250 123,234" style="fill:lime;stroke:purple;stroke-width:1" />
</svg>

对于Opera用户: 查看SVG文件(右键单击SVG图形预览源)。


实例 3

使用 <polygon> 元素创建一个星型:

下面是SVG代码:

实例

<svg height="210" width="500">
<polygon points="100,10 40,198 190,78 10,78 160,198"
style="fill:lime;stroke:purple;stroke-width:5;fill-rule:nonzero;" />
</svg>

对于Opera用户: 查看SVG文件(右键单击SVG图形预览源)。


实例 4

改变 fill-rule 属性为 “evenodd”:

下面是SVG代码:

实例

<svg height="210" width="500">
<polygon points="100,10 40,198 190,78 10,78 160,198"
style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;" />
</svg>

对于Opera用户: 查看SVG文件(右键单击SVG图形预览源)。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2120.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900