SVG 即 Scalable Vector Graphics,是一种用来绘制矢量图的 HTML5 标签。
svg引入方式
1 2 3 4 5 6 7 8 9 10 11 12 13
| <embed src="rect.svg" width="300" height="100" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" />
<object data="rect.svg" width="300" height="100" type="image/svg+xml" codebase="http://www.adobe.com/svg/viewer/install/" />
<iframe src="rect.svg" width="300" height="100"> </iframe>
|
绘制一个圆:1.svg
1
| <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red"/>
|
矩形,透明度,圆角:2.svg
1 2 3 4 5
| <rect x="300" y="100" width="250" height="250" style="fill:blue;stroke:pink;stroke-width:5; fill-opacity:0.1;stroke-opacity:0.9"/>
<rect x="550" y="0" rx="20" ry="20" width="250" height="100" style="fill:red;stroke:black; stroke-width:5;opacity:0.5"/>
|
椭圆:3.svg
1 2
| <ellipse cx="300" cy="150" rx="150" ry="80" style="fill:rgb(200,100,50);stroke:rgb(0,0,100);stroke-width:2"/>
|
线条:4.svg
1 2
| <line x1="0" y1="0" x2="300" y2="300" style="stroke:rgb(99,99,99);stroke-width:2"/>
|
三角形,多边形:5.svg
1 2 3 4 5 6
| <polygon points="640,351 600,210 770,20" style="fill:#FF9800; stroke:#795548;stroke-width:2"/>
<polygon points="420,100 500,210 410,320 323,234" style="fill:#cccccc;stroke:#000000;stroke-width:1"/>
<polygon points="100,10 40,180 190,60 10,60 160,180" style="fill:#F44336;stroke:#F44336;fill-rule:nonzero;" />
|
svg编辑器创建:6.svg
通过AI钢笔工具绘制,导出svg格式
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 960 560" style="enable-background:new 0 0 960 560;" xml:space="preserve"> <style type="text/css"> .st0 { fill: #FFFFFF; stroke: #000000; stroke-miterlimit: 10; } </style> <path id="XMLID_1_" class="st0" d="M77,82c76.3,259.8,128.7,318.6,164, 316c54.2-3.9,54.3-150.9,149-183c88.7-30.1,153.1,77.2,266,74 c67.3-1.9,158.3-43.3,264-214" /> </svg>
|
折线:7.svg
1 2
| <polyline points="100,100 200,100 200,200 300,200" style="fill:white;stroke:red;stroke-width:2"/>
|
path应用:8.svg
- M = moveto
- L = lineto
- H = horizontal lineto
- V = vertical lineto
- C = curveto
- S = smooth curveto
- Q = quadratic Belzier curve
- T = smooth quadratic Belzier curveto
- A = elliptical Arc
- Z = closepath
1
| <path d="M100 100 L200 100 L200 200 L300 200" style="fill:white;stroke:green;stroke-width:2"/>
|
滤镜使用:9.svg
- feBlend
- feColorMatrix
- feComponentTransfer
- feComposite
- feConvolveMatrix
- feDiffuseLighting
- feDisplacementMap
- feFlood
- feGaussianBlur
- feImage
- feMerge
- feMorphology
- feOffset
- feSpecularLighting
- feTile
- feTurbulence
- feDistantLight
- fePointLight
- feSpotLight
1 2 3 4 5 6
| <defs> <filter id="Gaussian_Blur"> <feGaussianBlur in="SourceGraphic" stdDeviation="3" /> </filter> </defs> <ellipse cx="200" cy="150" rx="70" ry="40" style="fill:#9acd32;stroke:#ccc;stroke-width:2;filter:url(#Gaussian_Blur)"/>
|
1. 标签的 id 属性可为滤镜定义一个唯一的名称(同一滤镜可被文档中的多个元素使用)
2.filter:url 属性用来把元素链接到滤镜。当链接滤镜 id 时,必须使用 # 字符
3.滤镜效果是通过 标签进行定义的。fe 后缀可用于所有的滤镜
4. 标签的 stdDeviation 属性可定义模糊的程度
5.in=”SourceGraphic” 这个部分定义了由整个图像创建效果
线性渐变,放射性渐变:10.svg
- 当 y1 和 y2 相等,而 x1 和 x2 不同时,可创建水平渐变
- 当 x1 和 x2 相等,而 y1 和 y2 不同时,可创建垂直渐变
- 当 x1 和 x2 不同,且 y1 和 y2 不同时,可创建角形渐变
1 2 3 4 5 6 7 8
| <defs> <linearGradient id="orange_red" x1="0%" y1="0%" x2="0%" y2="100%"> <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1"/> <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:0.5"/> </linearGradient> </defs> <ellipse cx="200" cy="190" rx="85" ry="55" style="fill:url(#orange_red)"/>
|
- 标签的 id 属性可为渐变定义一个唯一的名称
- fill:url(#orange_red) 属性把 ellipse 元素链接到此渐变
- 标签的 x1、x2、y1、y2 属性可定义渐变的开始和结束位置
- 渐变的颜色范围可由两种或多种颜色组成。每种颜色通过一个 标签来规定。offset 属性用来定义渐变的开始和结束位置。
1 2 3 4 5 6 7 8
| <defs> <radialGradient id="grey_blue" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"> <stop offset="0%" style="stop-color:rgb(200,200,200);stop-opacity:0"/> <stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:0.8"/> </radialGradient> </defs> <ellipse cx="500" cy="200" rx="110" ry="100" style="fill:url(#grey_blue)"/>
|
demo地址
https://github.com/chenfengyanyu/svg
参考资料:
w3school:
http://www.w3school.com.cn/svg/index.asp
svg类库snap.svg.js,像操作dom一样操作svg资源
http://snapsvg.io
基本的svg动画
https://msdn.microsoft.com/zh-cn/library/gg193979