try to draw 1000*1000 svg grig

This commit is contained in:
Gnieark 2016-06-29 12:25:05 +02:00
parent b81e5f36d4
commit 02dc6a18c6

View File

@ -7,17 +7,16 @@ function createElem(type,attributes){
function createElemNs(type,attributes){
var elem=document.createElementNS("http://www.w3.org/2000/svg",type);
for (var i in attributes)
{elem.setAttribute(i,attributes[i]);}
{elem.setAttributeNs(null,i,attributes[i]);}
return elem;
}
function tron(bot1,bot2,xdcheck){
var svg = document.getElementById("map");
var svgDoc = svg.contentDocument;
//var svgDoc = svg.contentDocument;
var rect=createElemNs('rect',{'x':'10','y':'10','width':'50','height':'80','style':'stroke:#000000; fill:none;'});
svgDoc.appendChild(rect);
document.getElementById("map").appendChild(rect);
}