HTML5-SVG-嵌入到html的几种方式

1.embed

1 <embed src="circle1.svg" type="image/svg+xml" />

2.object

1 <object data="circle1.svg" type="image/svg+xml"></object>

3.iframe

1 <iframe src="circle1.svg"></iframe>

4直接嵌入html

1 <html>
2 <body>
3     <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
4       <circle cx="100" cy="50" r="40" stroke="black"
5       stroke-width="2" fill="red"/>
6     </svg>
7 </body>
8 </html>

 

posted @ 2016-06-16 09:48  skyhap  阅读(2008)  评论(0编辑  收藏  举报