gpt4 book ai didi

jointJS - 为什么pointerclick事件不起作用,只有pointerdown被触发

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

这有效:

paper.on('cell:pointerdown', function(cellView, evt, x, y) {
alert("pointerdown");
});

但是这段代码没有:

paper.on('cell:pointerclick', function(cellView, evt, x, y) {
alert("pointerclick");
});

原因是pointerdown总是最先触发,我怎样才能使用pointerclick而不遇到pointerdown?

编辑:这个问题可能有点误导:我想知道为什么当我单击鼠标指针时,pointerclick 根本不被触发。 ponterdown 正在工作,但它停在那里,没有任何内容进一步传播(例如,当我按下鼠标按钮时..-因此执行单击)

最佳答案

好的,我找到了解决方案。 joint.js中有一个开关:

        // Allowed number of mousemove events after which the pointerclick event will be still triggered.
clickThreshold: 0,

所以如果我这样设置我的论文:

var paper = new joint.dia.Paper({
//... other settings
clickThreshold: 1 //or any number > 0 if you have more specific events there
})

它有效! jointJS 的文档中没有关于 clickThreshold 的内容,我想添加它可能是值得的,尤其是与诸如 pointclick 之类的事件结合使用。

关于jointJS - 为什么pointerclick事件不起作用,只有pointerdown被触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35443524/

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