アットウィキロゴ

p1p1

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
 
<script>
 
 
function sample(){
 
bx=250;
by=250;
 
paint();
 
}
 
function rect(x1,y1,w1,h1,col){
var strx;
strx="<rect x="+chop(x1)+"\" y="+chop(y1)+"\" width="+chop(w1);
strx=strx+"\" height="+chop(h1)+" fill="+chop(col)+"/>";
return strx;
}
 
 
function chop(strp){
var strx;
strx="\""+strp+"\"";
return strx;
}
 
 
function paint(){
 
str="<svg width=\"500\" height=\"500\">"; 
str=str+rect(bx,500-by,30,30,"red");
str=str+"</svg>";
 
$("#memo").html(str);   
 
}
 
 
 
 
</script>
最終更新:2018年05月21日 11:15