通过JavaScript添加SVG clip-path属性的问题

时间:2016-09-28 21:05:40

标签: javascript svg clip-path

我目前正试图在Google Gauge图表上获得类似圆锥渐变的内容。 你可以看到我在那个小提琴中的尝试:https://jsfiddle.net/fqt8pjuw/

我在HTML画布上添加了一个计量表和一个圆锥形渐变。 然后我将路径元素添加到SVG-clipPath:

此路径元素从指标图表中的红色条获取路径。

最后,我创建了image-Element并将所有元素添加到svg中的指定元素。

但遗憾的是,剪辑路径似乎不正常。我没有按预期获得路径,而是整个图像。

在某些功能上使用正确的命名空间可能存在一些冲突。如果有人能检查,我会很高兴。

google.charts.load('current', {'packages':['gauge']});
      google.charts.setOnLoadCallback(drawChart);
      function drawChart() {

        var data = google.visualization.arrayToDataTable([
          ['Label', 'Value'],
          ['Test1', 80],
          ['Test2', 80],
        ]);

        var options = {
          width: 400, height: 120,
          redFrom: 0, redTo: 100,
          minorTicks: 5
        };

        chart = new google.visualization.Gauge(document.getElementById('chart_div'));

        chart.draw(data, options);


        canvas = document.createElement('canvas'),
            d = canvas.width = canvas.height = 200,
            ctx = canvas.getContext('2d');

        //document.body.appendChild(canvas);

        ctx.translate(d/2, d/2);
        ctx.rotate(-Math.PI/2-Math.PI/8-Math.PI/16);
        ctx.scale(-1,1);
        ctx.lineWidth = 2;
        ctx.lineCap = 'round';

        for(var i=0; i<=360; i++) {
            ctx.save();

            ctx.rotate(Math.PI * i/180);
            ctx.translate(-ctx.lineWidth/2, ctx.lineWidth/2);

            ctx.beginPath();
            ctx.moveTo(0, 0);
            ctx.strokeStyle = 'hsl(' + i + ',100%,50%)';

            ctx.lineTo(0, d);
            ctx.stroke();
            ctx.closePath();

            ctx.restore();
        }

        svgEl=chart.ga.getElementsByTagName("svg");
        pathEl=svgEl[0].getElementsByTagName("path")[0];
        clipPath=pathEl.getAttribute("d");

        xmlns = "http://www.w3.org/2000/svg";

        cp=document.createElementNS(xmlns,"clipPath");
        cp.setAttribute("id", "cp1");
        cp.setAttributeNS(xmlns, "clipPathUnits","userSpaceOnUse");

        p=document.createElementNS(xmlns, "path");
        p.setAttributeNS(xmlns, "d", clipPath);
        //p.setAttribute("transform","translate(40,40)");
        //p.setAttribute("style", "opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1");

        cp.appendChild(p);

        img=document.createElementNS(xmlns, "image");
        img.setAttributeNS('http://www.w3.org/1999/xlink', 'href', canvas.toDataURL()+" ");
        img.setAttributeNS(xmlns, "clip-path","url(#cp1)");
        img.setAttribute("width", 200);
        img.setAttribute("height",200);
        img.setAttribute("x", 0);
        img.setAttribute("y",0);
        img.setAttribute("transform","translate(-40,-40)");

        svgEl[0].getElementsByTagName("defs")[0].appendChild(cp);


        svgEl[0].childNodes[1].insertBefore(img, svgEl[0].childNodes[1].childNodes[3]);
      }
<script src="https://www.gstatic.com/charts/loader.js"></script>
<div id="chart_div" style="width: 400px; height: 120px;"></div>

1 个答案:

答案 0 :(得分:2)

SVG中的SVG名称空间(http://www.w3.org/2000/svg)中没有属性。只有元素在SVG名称空间中。

因此,对于属性设置,除了xlink:href(SVG 1.1)和很少使用的xml:space属性(也是SVG 1.1)之外,您需要setAttribute。 SVG 2将废除这两个异常,以便可以使用setAttribute设置所有属性。