用JS动态创建SVG元素并绑定事件

  var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
    svg.setAttribute("width", "800");
    svg.setAttribute("height", "500");
    svg.addEventListener("load", function () { alert(loaded); });
    document.body.appendChild(svg);

以上代码可创建SVG容器并追加到body元素下,如果要添加元素,使用以下代码:

   var r = document.createElementNS("http://www.w3.org/2000/svg", "rect");
    r.setAttribute("fill", "#120045");
    r.setAttribute("x", "1");
    r.setAttribute("y", "1");
    r.setAttribute("width", "50%");
    r.setAttribute("height", "50%");
    r.addEventListener("click", function () { alert(clicked); });
    svg.appendChild(r);

 

用JS动态创建SVG元素并绑定事件,布布扣,bubuko.com

文章来自:http://www.cnblogs.com/yzeng/p/3790690.html
© 2021 jiaocheng.bubufx.com  联系我们
ICP备案:鲁ICP备09046678号-3