アットウィキロゴ

ryuzen

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
 
<script>
 
class svgpaint{
 
chop(strp){
 this.strx="\""+strp+"\"";
 return this.strx;
}
rect(x1,y1,w1,h1,col){
this.strx="<rect x="+this.chop(x1)+"\" y="+this.chop(y1)+"\" width="+this.chop(w1);
this.strx=this.strx+"\" height="+this.chop(h1)+" fill="+this.chop(col)+"/>";
return this.strx;
}
}
 
</script>
<script>
 
function sample(){
 
var a=new svgpaint(); 
str="<svg width=\"500\" height=\"500\">"; 
str=str+a.rect(100,100,50,50,"green");
str=str+"</svg>";
 
$("#memo").html(str);
 
}
</script>
最終更新:2018年06月11日 14:56