标签:round 图像 img *** frame 应用程序 lis type 复杂度
下表列出了 canvas 与 SVG 之间的一些不同之处。
SVG 格式
基于xml的写法
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<circle cx="100" cy="100" r="40" fill="red"></circle>
</svg>
***xmlns="http://www.w3.org/2000/svg" 必须写的命名空间
SVG引入方式
1.通过html 图片、背景、iframe引入外链的svg
例如:
<img src="svg.svg">
<div style="height:200px; width:200px; background:url(svg.svg) no-repeat"></div>
<iframe src="svg.svg"></iframe>
2.直接在html中写svg
例如:
<div id="div1">
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
<circle cx="100" cy="100" r="40" fill="red"></circle>
</svg>
</div>
标签:round 图像 img *** frame 应用程序 lis type 复杂度
原文地址:http://www.cnblogs.com/xiaozhishang/p/6405881.html