javascript - 逐渐增加不透明度

标签 javascript d3.js opacity bubble-chart

我想逐渐增加 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>

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

最佳答案

结果如下: 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");
    }

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

关于javascript - 逐渐增加不透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36865302/

相关文章:

javascript - 如何使用nodejs在电子邮件的html模板中嵌入图像?

javascript - 如何使用 JavaScript 验证文件的大小?

javascript - 有没有办法优化 svg 的性能?

css - 在div中,如何使背景透明,但轮廓不透明?

jquery - chrome opacity 覆盖溢出问题影响边界半径

javascript - RXJS:在运算符之间分配然后重用值

javascript - 在包含克隆 dom 元素的数组上使用 jquery 选择器

javascript - 动态生成多个 d3 svg 图

d3.js - D3JS 缩放和转换性能

html - css 不透明度过渡不起作用