我通过JavaScript以编程方式创建了几个svg-images。图像是线条。
function create(elem) { //function for create svg elem
var svg = "http://www.w3.org/2000/svg";
return document.createElementNS(svg, elem);
function set(elem, atrArr) { //function for set attributes svg elem
for (var i in atrArr) {
elem.setAttribute(i, atrArr[i])
}
}
function someFunc(valueWidth, valueHeight) {
var SVG = create('svg'); //canvas
var line = create('line'); //line
var width = valueWidth; //some value
var heigth = valueHeight; //some value
set(SVG, { //set canvas
version: '1.1',
width: width,
height: height
});
//set line
set(line, { x1: 0, x2: width, y1: 0, y2: height, style: 'stroke:rgb(0,0,0);stroke-width:1' });
SVG.style.position = 'absolute';
SVG.appendChild(line);
}
如果高度或宽度< 0.5,然后只在IE中绘制线条。 我可以在不改变画布大小的情况下在其他浏览器中绘制线条吗?
答案 0 :(得分:0)
在纠正语法错误(高度与高度)并将svg元素附加到正文后,这对我来说在Chrome中运行正常:
var SVG = create('svg'); //canvas
document.body.appendChild(SVG);