gpt4 book ai didi

d3.js - 拖动强制布局会阻止其他 mouseup 监听器

转载 作者:行者123 更新时间:2023-12-02 00:13:19 24 4
gpt4 key购买 nike

我想在 d3.js 强制布局中启用拖动。当拖动一个圆并释放鼠标按钮时,我想通过回调调用特定的函数,如下所示:

this.force = d3.layout.force()
.nodes(this.nodes)
.size([this.width, this.height]);

// enable dragging
this.circle
.call(this.force.drag)
.on("dragend", function() {
console.log("You should see this, when releasing a circle.");
})
.on("mouseup.drag",function(d,i) {
console.log("Or see this.");
});

不幸的是,事件永远不会被 force.drag 处理程序完全触发/消耗。那么如何在拖动结束时在 d3 强制布局中执行给定的回调函数?

最佳答案

您没有在此处调用 this.force.drag 上的 "dragend" 事件。这也取决于您如何定义 this.force.drag

这应该适合你

myCustomDrag = d3.behavior.drag()
.on("dragstart", function(d,i){
//do something when drag has just started
})
.on("drag", function(d,i){
//do something while dragging
})
.on("dragend", function(d,i){
//do something just after drag has ended
});

在上面的代码中,只需在您希望出现此拖动行为的元素(此处为圆圈)上使用call(myCustomDrag)

关于d3.js - 拖动强制布局会阻止其他 mouseup 监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14398724/

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