Skip to content
Snippets Groups Projects
Commit 43d90b5d authored by Azadpour, Elmera's avatar Azadpour, Elmera
Browse files

conditional stroke opacity and transition

parent 85c6a1f3
No related branches found
No related tags found
1 merge request!95top 25 fams, white stroke on circle text, img/text for fams
......@@ -140,6 +140,7 @@ const activeFamily = ref(defaultFamily); // start with placeholder
.join("text")
.attr("class", "fish-title")
.style("fill-opacity", d => d.parent === root ? 1 : 0)
.style("stroke-opacity", d => d.parent === root ? 1 : 0)
.style("display", d => d.parent === root ? "inline" : "none")
.style("font-size", "1.2rem")
.style("stroke", "white") // white outline
......@@ -194,6 +195,7 @@ const activeFamily = ref(defaultFamily); // start with placeholder
})
.transition(transition)
.style("fill-opacity", d => d.parent === focus ? 1 : 0)
.style("stroke-opacity", d => d.parent === focus ? 1 : 0)
.on("start", function (d) {
if (d.parent === focus) this.style.display = "inline";
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment