posts - 40, comments - 13, trackbacks - 0, articles - 1
  IT博客 :: 首页 :: 新随笔 :: 联系 ::  :: 管理

把SVG图加入到HTML文档

Posted on 2005-12-16 18:42 WJH 阅读(495) 评论(0)  编辑 收藏 引用 所属分类: 工作相关
1、
<body>
  <h2 style="text-align: center">SVG Demonstration</h2>
   <p>A page may have other code besides the SVG image.</p>
    <object type="image/svg+xml" data="MySVG.svg"
                          width="300" height="200">
     <img src="NonSVG.gif" alt="SVG 图像的静态版本" />
  </object>
  <p>Using objects allows the browser to decide what to display.</p>
  </body>
2、
<embed width="640" height="560" type="image/svg-xml" id="svgmapctrl"
pluginspage="http://www.adobe.com/svg/viewer/install/" src="default.svg" ></embed>
只有注册用户登录后才能发表评论。