{
const svg = d3.create("svg").attr("width", width).attr("height", height);
svg
.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", width)
.attr("height", height)
.attr("fill", "#002")
.attr("id", "background");
svg
.selectAll(".circles")
.data(circleData)
.enter()
.append("circle")
.attr("cx", (d) => d.x)
.attr("cy", height / 2)
.attr("r", (d) => d.startSize)
.attr("stroke-width", 0)
.attr("stroke", "white")
.attr("class", "circles")
.attr("fill", (d) => d.startFill)
.on("mouseover", (e, d) => {
d3.select(e.currentTarget)
.transition()
.duration(2000)
.ease(d3.easeBounceOut)
.attr("r", d.endSize)
.attr("fill", d.endFill)
.attr("stroke-width", 10);
d3.select("#background")
.transition()
.duration(1000)
.attr("fill", d.backgroundColor);
})
.on("mouseout", (e, d) => {
d3.select(e.currentTarget)
.transition()
.delay(500)
.duration(1500)
.attr("r", d.startSize)
.attr("stroke-width", "0")
.attr("fill", d.startFill);
d3.select("#background").transition().duration(1000).attr("fill", "#002");
});
return svg.node();
}