我试图向rect添加工具提示。它会在鼠标指针悬停在条形图上时弹出,但它不希望在mouseout事件中消失。我也试过使用div.style("显示","无"),但它也不起作用。出于某种原因,它不想在mouseout之后再次触发鼠标悬停事件。它只是继续显示工具提示。
http://bl.ocks.org/edkiljak/dc85bf51a27122380c68909cdd09d388
div.tooltip {
position: absolute;
text-align: left;
padding: 4px;
font-family: Lato, arial, sans-serif;
font-size: 14px;
background: #eee;
border-radius: 2px;
border: 1px solid gray;
pointer-events: none;
}
var div = d3.select("body")
.append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var bars = barGroup.selectAll("rect")
.data(data)
.enter()
.append("rect")
.attr("x", 0)
.attr("y", function (d) {
return heightScale(d.Vendor);
})
.attr("width", function (d) {
return widthScale(+d.Share2016)
})
.attr("height", heightScale.bandwidth() / 1.1)
.style("fill", function (d, i) {
return color(i);
})
.on("mouseover",function (d){
div.transition()
.duration(200)
div
.style("opacity", .9)
.html("Vendor: " + "<strong>" + d.Vendor + "</strong>" + "<br>" + "Market share in 2016: " + d.Share2016 + "%")
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY - 28) + "px");
d3.select(this)
.style("fill", "#93ceff")
})
.on("mouseout", function(){
d3.select(this)
.transition()
.duration(50)
.style("fill", function(d,i){
return color(i);
})
d3.select(div).remove()
})
我在这里做错了什么?
答案 0 :(得分:1)
问题在于:
d3.select(div).remove()
由于div
本身就是一个选择,你选择了一个选择,这没什么意义。
而不是那样,只需在div
中使用mouseout
:
div.remove()
或者,更好的是,只需将其不透明度设置为零:
div.style("opacity", 0)
以下是仅更改的更新bl.ocks:http://bl.ocks.org/anonymous/raw/13ce2445b248fb9e44dcd33cfc3dff36/dff0c60423927960cab8aaf9e613c2c3ae205808/