【问题标题】:Gradually increment the opacity逐渐增加不透明度
【发布时间】:2016-08-20 07:17:28
【问题描述】:

我想在 D3.js 中逐渐增加我的圆圈的不透明度。我有两个问题,第一个是即使我设置了静态不透明度,我的圆圈也不会出现。第二个是我不知道如何有一个干净的方法让我的圈子逐渐幻影:

    <!DOCTYPE html>
<meta charset="utf-8">
<style>
    text {
        font: 10px sans-serif;
    }
</style>
<body>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script>

    var diameter = 960,
            format = d3.format(",d"),
            color = d3.scale.category20c();

    var bubble = d3.layout.pack()
            .sort(null)
            .size([diameter,diameter])
           .value(function(d) { console.log(d.size);return d.size; })
            .padding(1.5);

    var svg = d3.select("body").append("svg")
            .attr("width", diameter)
            .attr("height", diameter)
            .attr("class", "bubble");


    d3.json("./data.json", function(error, root) {
        if (error) throw error;

        var node = svg.selectAll(".node")
                .data(bubble.nodes(classes(root))
                 .filter(function(d) {   return !d.children; }))
                .enter().append("g")
                .attr("class", "node")
                .attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; });

        node.append("title")
                .text(function(d) { return d.className + ": " + format(d.value); });

        node.append("circle")
                .attr("r", function(d) {return d.r; })
                .style("fill", function(d) { return color(d.size); })
                .style("visibility","hidden");

        node.append("text")
                .attr("dy", ".3em")
                .style("text-anchor", "middle")
                .text(function(d) { return d.className.substring(0, d.r / 3); })
                .style("visibility","hidden");

                  setTimeout(myFunction, 3000);
        function myFunction() {
          for (var i = 0 ; i <= 1 ; i = i + 0.01){
            console.log(i);
            node.append("circle").style("opacity",i);
          }
            //At this time, circles should be appears !
        }
    });


    // Returns a flattened hierarchy containing all leaf nodes under the root.
    function classes(root) {
        var classes = [];
        function recurse(name, node) {
            if (node.children) node.children.forEach(function(child) { recurse(node.name, child); });
           else classes.push({packageName: name, className: node.name, value: node.size, size: node.size});
        }
        recurse(null, root);
        return {children: classes};
    }
    d3.select(self.frameElement).style("height", diameter + "px");

</script>
</body>

这是 Plunker:https://plnkr.co/edit/wrCk54GrDPpK8AkgWjCt?p=preview 谢谢。

【问题讨论】:

    标签: javascript d3.js opacity bubble-chart


    【解决方案1】:

    结果如下: https://plnkr.co/edit/SAf0BaUpJJQw5Vwp3T5P?p=preview

    我认为你想要的不是可见性,而是你的圆圈和文本元素的不透明度,如下所示:

    node.append("circle")
                    .attr("r", function(d) {return d.r; })
                    .style("fill", function(d) { return color(d.size); })
                    .style("opacity","0");
    
            node.append("text")
                    .attr("dy", ".3em")
                    .style("text-anchor", "middle")
                    .text(function(d) { return d.className.substring(0, d.r / 3); })
                    .style("opacity","0");
    

    你的 setTimeout 回调应该是:

      function myFunction() {
            node.selectAll("circle").transition().duration(1000).style("opacity","1");
            node.selectAll("text").transition().duration(1000).style("opacity","1");
        }
    

    您可以更改上述持续时间以获得较慢的效果。

    【讨论】:

    • 一个小提示,最好在myFunction 中使用node.selectAll(...),以防图表之外还有其他circletext 元素(即工具栏/工具提示)。
    • 好建议,我已经改了。
    猜你喜欢
    • 1970-01-01
    • 2014-02-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-03-13
    • 1970-01-01
    • 2011-02-07
    相关资源
    最近更新 更多