点评:如果svg代码在html中,我们就更容易写javascript来控制图形的变换,下面为大家介绍一些svg的预定义的形状元素,感兴趣的朋友可以参考下哈,希望对大家有所帮助
SVG 文件可通过以下标签嵌入 HTML 文档:<embed>、<object>或者<iframe>。复制代码
代码如下:
<embed src="rect.svg"height="100"
type="image/svg+xml"
pluginspage="http://www.adobe.com/svg/viewer/install/"/>
复制代码
代码如下:
<object data="rect.svg"width="300"
type="image/svg+xml"
codebase="http://www.adobe.com/svg/viewer/install/"/>
<iframe src="rect.svg"height="100">
</iframe>
复制代码
代码如下:
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
复制代码
代码如下:
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="240" cy="100" rx="220" ry="30"
style="fill:yellow"/>
<ellipse cx="220" cy="100" rx="190" ry="20"
style="fill:white"/>
</svg>
复制代码
代码如下:
<script type="text/javascript">
function ccc(){
var a = document.getElementById("w1");
a.style.fill="red";
a.setAttribute("cx", "150"); //设置值
a.setAttribute("ry", "50"); //设置值
}
</script>
新闻热点
疑难解答