如何使用d3.js在鼠标悬停时更改图像

时间:2014-12-29 12:10:07

标签: javascript svg d3.js

我有一些svg圈子和图像,用d3.js生成。我想在鼠标悬停时更改图像而不是工具提示。

mask.append("image")
    .attr('class', "sth")
    .attr('x',-(entry.childNodes[0].getAttribute("r"))-40)
    .attr('y',-(entry.childNodes[0].getAttribute("r"))-40)
    .attr('width', 80+entry.childNodes[0].getAttribute("r")*2)
    .attr('height', 80+entry.childNodes[0].getAttribute("r")*2)
    .attr("transform", entry.childNodes[0].getAttribute("transform"))
    .attr('clip-path', 'url(#'+('clip'+clipPathId)+')')
    .attr("xlink:href", imageUrl)
    .on("click", function(d) { 
          zoom(d);                           
          d3.event.stopPropagation(); 
    })
    .on("mouseover", function(d){ d.attr("xlink:href", "img/001.jpg"); tooltip.style("visibility", "visible"); tooltip.html("<img src='"+imageUrl+"'/>"); })
    .on("mousemove", function(){ tooltip.style("top", (d3.event.pageY-10)+"px").style("left",(d3.event.pageX+10)+"px"); })
    .on("mouseout", function(){ tooltip.style("visibility", "hidden"); }); 
                    ;

1 个答案:

答案 0 :(得分:3)

d是绑定到节点的数据元素。 this是节点本身:

尝试:

.on("mouseover", function(d){ 
    d3.select(this).attr("xlink:href", "img/001.jpg");
})