アットウィキロゴ

SVG 3

<html>
<head>
<title>SVG</title>
<script src="jquery.js"></script>
<script type="text/javascript" src="line.js"></script> 
<script type="text/javascript" src="q6.js"></script> 
</head>
<body>
<p id="svg">メモ</p>
<input type="button" value="テスト" onClick="paint()" />
</body>
</html>
 
 
 
var s;
var x=new Array();
 
function line(){
 
for(s=1;s<100;s++){
x[s]=5*s;
}
 
}
 
 
function paint(){
 
line();
 
var str;
str="<svg>";
 
for(s=1;s<100;s++){
str=str+"<circle cx=\""+x[s]+"\" cy=\""+x[s]+"\" r=\"25\"/>"
}
 
str=str+"</svg>";
 
$("#svg").html(str);
 
}
最終更新:2013年09月27日 12:06