- SVG 演示
- SVG - 加载器
- SVG - 对话框
- SVG - 图标
- SVG - 时钟
- SVG - 拖拽
- SVG - 关键点
- SVG - 地图
- SVG - amChart
- SVG - 图表
- SVG - 平坦表面阴影
- SVG - 图像滤镜
- SVG - 文本效果
- SVG - 带 CSS 效果的文本
- SVG - 箭头效果
- SVG - 品牌效果
- SVG - 果冻效果
- SVG - 渐变效果
- SVG - 活泼效果
- SVG - 滚动效果
- SVG - 幻灯片效果
- SVG - 标签效果
- SVG - Raphael.js 效果
- SVG - Velocity.js 效果
- SVG - Walkway.js 效果
- SVG - zPath.js 效果
- SVG - Vague.js 效果
- SVG - 变换效果
- SVG - 全屏覆盖效果
- SVG - Lazylinepainter.js 效果
- SVG - 演示游戏
- SVG - 实时 SVG 广告
- SVG 有用资源
- SVG - 常见问题解答
- SVG - 快速指南
- SVG - 有用资源
- SVG - 讨论
SVG - 多边形
<polygon> 元素用于绘制由连接的直线组成的封闭形状。
声明
以下是 <polygon> 元素的语法声明。我们只显示了主要属性。
<polygon points="list of points" > </polygon>
属性
序号 | 名称&描述 |
---|---|
1 | points − 用于构成多边形的点列表。 |
示例
testSVG.htm<html> <title>SVG Polygon</title> <body> <h1>Sample SVG Polygon Image</h1> <svg width="800" height="800"> <g> <text x="0" y="15" fill="black" >Polygon #1: Without opacity.</text> <polygon points="150,75 258,137.5 258,262.5 150,325 42,262.6 42,137.5" stroke="black" stroke-width="3" fill="rgb(121,0,121)"></polygon> </g> </svg> </body> </html>
输出
在 Chrome 浏览器中打开 textSVG.htm。您可以使用 Chrome/Firefox/Opera 直接查看 SVG 图像,无需任何插件。Internet Explorer 9 及更高版本也支持 SVG 图像渲染。
具有不透明度的多边形
<html> <title>SVG Polygon</title> <body> <h1>Sample SVG Polygon Image</h1> <svg width="800" height="800"> <g> <text x="0" y="15" fill="black" >Polygon #2: With opacity </text> <polygon points="150,75 258,137.5 258,262.5 150,325 42,262.6 42,137.5" style="fill:rgb(121,0,121);stroke-width:3; stroke:rgb(0,0,0);stroke-opacity:0.5;opacity:0.5"></polygon> </g> </svg> </body> </html>
输出
在 Chrome 浏览器中打开 textSVG.htm。您可以使用 Chrome/Firefox/Opera 直接查看 SVG 图像,无需任何插件。Internet Explorer 9 及更高版本也支持 SVG 图像渲染。
svg_shapes.htm
广告