d3在当前鼠标指针下获取元素或对象?

时间:2017-02-06 16:58:33

标签: javascript d3.js svg

如何在d3中获取当前鼠标下的对象(例如节点,边缘,路径或其他内容)?

我想将鼠标放在svg和console.log元素的任何部分上。

2 个答案:

答案 0 :(得分:3)

D3没有本机方法。但是,您可以在d3.mouse()事件中将document.elementFromPoint()mousemove合并:

var svg = d3.select("svg");
svg.on("mousemove", function() {
    var mouse = d3.mouse(this);
    var elem = document.elementFromPoint(mouse[0], mouse[1]);
    console.log(elem.tagName)
})
<script src="https://d3js.org/d3.v4.min.js"></script>
<svg height="150" width="500">
  <rect x="50" y="20" width="150" height="100" style="fill:blue;stroke:pink;stroke-width:5;fill-opacity:0.1;stroke-opacity:0.9"/>
  <ellipse cx="240" cy="50" rx="220" ry="30" style="fill:yellow"/>
  <ellipse cx="220" cy="50" rx="190" ry="20" style="fill:white"/>
  <circle cx="350" cy="50" r="40" stroke="black" stroke-width="3" fill="red" />
  <line x1="0" y1="0" x2="200" y2="200" style="stroke:rgb(255,0,0);stroke-width:4"/>
</svg>

答案 1 :(得分:-2)

没有d3可以用js和/或jQuery来完成:

$( "body" ).click(function( event ) {
    console.log( "clicked: " + event.target.nodeName, event.target);
});