码迷,mamicode.com
首页 > 编程语言 > 详细

每天一个JavaScript实例-SVG中的javaScript展示

时间:2014-11-03 17:50:48      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   java   on   2014   

<?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 width="100%" height="100%" version="1.1"
xmlns="http://www.w3.org/2000/svg">


<script type="text/javascript">
<![CDATA[
	window.onload = function(){
		var square = document.getElementById("square");

		square.onclick = function(){
			
			var color = this.getAttribute("fill");
			console.log(color);
			if(color =="#f00"){
				this.setAttribute("fill","#00f");
			}else{
				this.setAttribute("fill","#f00");
			}
		}
	}
	]]>
</script>


<rect id= "square" x="10" y="10" width="400" height="400"
style="stroke:pink;stroke-width:5;
fill-opacity:0.1;stroke-opacity:0.9" fill="#00f"/>

</svg>

每天一个JavaScript实例-SVG中的javaScript展示

标签:style   blog   http   io   color   ar   java   on   2014   

原文地址:http://blog.csdn.net/waiting7436/article/details/40743063

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!