我想逐渐增加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 感谢。
答案 0 :(得分:2)
结果如下: 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");
}
您可以更改上面的持续时间以获得较慢的效果。