我在圆盘贴图上通过d3放置了圆形工具提示,如下所示:
var tooltip = d3.select("body")
.append("div")
.attr("id", "mytooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden")
.text("a simple tooltip");
feature.on("mouseover",function(d) {
d3.select(this)
.transition()
.ease("elastic")
.duration(500)
.attr('r', function (d){
return (d.properties.xy * 5)
.style("stroke", "black")
d3.select("#mytooltip")
.style("visibility", "visible")
.text(d.properties.xy1 + " " + d.properties.xy2)
});
feature.on("mousemove", function() {
return tooltip.style("top", (d3.event.pageY-10)+"px")
.style("left",(d3.event.pageX+10)+"px");
});
feature.on("mouseout",function(d) {
d3.select(this)
.transition()
.ease("elastic")
.duration(500)
.attr('r', function (d){
return (d.properties.xy);
})
.style("stroke", "none")
d3.select("#mytooltip")
.style("visibility", "hidden")
});
我的功能是:
var feature = g.selectAll("circle")
.data(myData.features)
.enter()
//...
我想知道如何设置显示的工具提示的样式?有没有办法给它一个背景,用粗体,斜体,不同的颜色等写一些东西?
答案 0 :(得分:5)
这就是我喜欢做的事情。首先,我使用带有名为“tooltip”的类的div设置工具提示的CSS样式:
div.tooltip {
position: absolute;
etc...
}
然后我设置了一个工具提示var(这里,svgId
是你附加SVG的元素的ID,与你选择“body”的方式差别不大):
var tooltip = d3.select("#svgId").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
div有0
不透明度。然后,只需在mouseover
或mousemove
上显示工具提示即可:
selection.on("mousemove", function(d) {
tooltip.html("<strong> Look, I'm bold !</strong> and now I'm not bold<br>
and this is another line!and this is my data: " + d.whatever)
.style('top', d3.event.pageY - 12 + 'px')
.style('left', d3.event.pageX + 25 + 'px')
.style("opacity", 1);
});
您可以使用HTML标记在工具提示中设置文本样式,使其变为粗体,斜体等。最后,我们将鼠标输出中的工具提示消失(就像您一样):
selection.on("mouseout", function(d) {
tooltip.style("opacity", 0);
});
由于0
不透明度的div仍占用页面空间,因此更好的方法是在display
期间将none
属性从block
更改为mouseover
},并返回none
中的mouse out
。
答案 1 :(得分:0)
您可以使用CSS设置工具提示的样式。您可以在单独的.css
文件中,<style>
标记中执行此操作,也可以使用与提供工具提示可见性相同的方式执行此操作。像.style("background", "rgba(179, 107, 0, 0.5)")