我开始研究SVG图形。
我在Eclipse的项目中为SVG创建了命名空间。但是,当我按CTRL + SPACE
时,不存在默认提案?
如何将它们包含在Eclipse中?
我的第一个html文件(它的作品,但我有几个警告Unknown tag (rect/svg).
任何想法,为什么它们发生???)
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<rect x="10" y="10" height="50" width="50" rx="5" ry="5"
style="stroke:#006600; fill: #00cc00" />
<rect x="70" y="10" height="50" width="50" rx="10" ry="10"
style="stroke:#006600; fill: #00cc00" />
<rect x="130" y="10" height="50" width="50" rx="15" ry="15"
style="stroke:#006600; fill: #00cc00" />
</svg>
</body>
</html>
&#13;
另外,我试过这个
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:svg="http://www.w3.org/2000/svg">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<svg:svg>
<svg:rect x="10" y="10" height="50" width="50" rx="5" ry="5"
style="stroke:#006600; fill: #00cc00" />
<svg:rect x="70" y="10" height="50" width="50" rx="10" ry="10"
style="stroke:#006600; fill: #00cc00" />
<svg:rect x="130" y="10" height="50" width="50" rx="15" ry="15"
style="stroke:#006600; fill: #00cc00" />
</svg:svg>
</body>
</html>
&#13;
警告不会发生,但这不起作用(