gpt4 book ai didi

javascript - 如何创建鼠标悬停时显示的可点击元素?

转载 作者:行者123 更新时间:2023-12-01 17:52:49 45 4
gpt4 key购买 nike

我在图形节点上的鼠标悬停事件上显示 svg 元素 - 让我们将它们命名为标签。显示/隐藏这些是非常令人满意的,尽管可能有所改进。但是,我希望鼠标悬停时显示的元素是可点击的。

目前,不会捕获标签上的鼠标悬停事件。如果我禁用删除标签的 on mouseout 事件,标签上的事件会被正确捕获,但显然标签会永远保留。

有没有一种方法可以让标签在父项上发生鼠标移出事件时可点击并消失?我考虑过在删除标签之前添加 1 秒的延迟,但既不知道该怎么做,也不知道这样做是否正确。

下面的代码显示了一个函数示例 - fiddle here: https://jsfiddle.net/pducrot/4eyb81kx/

// graph size
var width = 400;
var height = 400;

var nodes = [{name: 'A'}, {name: 'B'}, {name: 'C'}, {name: 'D'}];
var edges = [{source: 'A', target: 'B'}, {source: 'B', target: 'C'}, {source: 'C', target: 'A'}, {source: 'C', target: 'D'}];
var tags = [10, 35, 56, 9];

var nodeMap = {};
nodes.forEach(function (x) {nodeMap[x.name] = x;});
var links = edges.map(function (x) {
return {source: nodeMap[x.source], target: nodeMap[x.target], value: 1};
});

var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.attr("pointer-events", "all")
.call(d3.behavior.zoom().on("zoom", redraw))
.append('g');

var force = d3.layout.force()
.gravity(.25)
.distance(140)
.charge(-3500)
.size([width, height]);

var stdDragStart = force.drag().on("dragstart.force");
force.drag()
.on("dragstart", function (d) {
//prevent dragging on the nodes from dragging the canvas
d3.event.sourceEvent.stopPropagation();
stdDragStart.call(this, d);
});

force.nodes(nodes)
.links(links)
.friction(0.8)
.start();

var link = svg.selectAll(".link")
.data(links)
.enter().append("line")
.attr("class", "link");

var node = svg.selectAll(".node")
.data(nodes)
.enter().append("svg:g")
.attr("class", "node")
.attr("id", function (d) {
return d.name
})
.on("dblclick", dblclick)
.on("mouseover", function (d) {
drawTags(tags, d.name);
})
.on("mouseout", function (d) {
d3.select("#" + d.name).selectAll(".tool").remove();
})
.call(force.drag);

node.append("circle")
.attr("class", "circle")
.attr("r", 40);

d3.selectAll(node);

// display name in nodes if node structure
node.append("text")
.attr("text-anchor", "middle")
.attr("dy", ".35em")
.text(function (d) {
return d.name;
});

force.on("tick", function () {
link.attr("x1", function (d) {return d.source.x;})
.attr("y1", function (d) {return d.source.y;})
.attr("x2", function (d) {return d.target.x;})
.attr("y2", function (d) {return d.target.y;});
node.attr("transform", function (d) {
return "translate(" + d.x + "," + d.y + ")";
});
});

// redraw after zooming
function redraw() {
svg.attr("transform", "translate(" + d3.event.translate + ")" + " scale(" + d3.event.scale + ")");
}

function dblclick(d) {
d3.select(this).classed("fixed", d.fixed = false);
}

function dragstart(d) {
d3.select(this).classed("fixed", d.fixed = true);
}

function drawTags(tags, onto) {

var rScale = d3.scale.ordinal()
.domain(tags)
.rangeBands([-Math.PI, Math.PI]);

var local = d3.select("#" + onto).selectAll(".tool")
.data(tags)
.enter()
.append("svg:g")
.attr("pointer-events", "all")
.attr("class", "tool")
.attr("transform", function (d) {
var x = Math.sin(rScale(d)) * 40;
var y = Math.cos(rScale(d)) * 40;
return "translate(" + x + "," + y + ")";
})
.on("mouseover", function (d) {
alert("mouse over tag " + d);
});
local.append("circle")
.attr("class", "circle")
.attr("r", 15);

local.append("text")
.attr("text-anchor", "middle")
.attr("dy", ".35em")
.text(function (d) {
return d
});
}

enter image description here

最佳答案

部分答案是在删除标签之前增加延迟,如上文所建议的。这可以在节点变量上完成:

.on("mouseout", function(d) {
d3.select("#"+d.name).selectAll(".tool")
.transition()
.delay(800)
.remove();
})

最好减少标签和父节点之间的重叠(在 drawTags 中),因为鼠标悬停仅在父节点上,标签被认为是 out。

var x = Math.sin(rScale(d))*50; // vs. 40px previously
var y = Math.cos(rScale(d))*50;

将标签上的鼠标悬停事件更改为点击事件,并使标签和文本仅接收带有 .attr("pointer-events", "click") 的点击指针事件

.on("click", function(d) { alert(d); });

关于javascript - 如何创建鼠标悬停时显示的可点击元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31637278/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com