为了自由,幸福而不断奋斗,前行!!!

一笑看风云过....

博客园 首页 新随笔 联系 订阅 管理
一、在HTML中嵌入SVG

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <p>
    This shows a simple html document with an svg document included by reference.
    </p>
    <embed src="test.svg" width="100%" height="100%" align="center"></embed>
    </div>
    </form>
</body>
</html>
二、使用对象元素
    <object type="image/svg + xml" data="test.svg" width="300" height="200" align="top"></object>
在引用SVG只有两件事会出错:
1.SVG文件本身无效哦奥,或没有正确的命名这个文件,
2.url="   ";引用不到文件。
产生的错误是客户端的无反馈信息,漫长的等待。

posted on 2008-03-16 23:15  YAO'STAR  阅读(568)  评论(0编辑  收藏  举报