3

我有以下功能来获取鼠标点击位置(坐标)。

$('#myCanvas').on('click', function(e) {
    event = e;
    event = event || window.event;

    var canvas = document.getElementById('myCanvas'),
            x = event.pageX - canvas.offsetLeft,
            y = event.pageY - canvas.offsetTop;
    alert(x + ' ' + y);
});

我需要在单击一个位置时获得鼠标点,并在拖动相同位置后获得鼠标点位置。

即,mousedown 点和 mouseup 点。

4

3 回答 3

9

尝试一些不同的设置:

var canvas = myCanvas;  //store canvas outside event loop
var isDown = false;     //flag we use to keep track
var x1, y1, x2, y2;     //to store the coords

// when mouse button is clicked and held    
$('#myCanvas').on('mousedown', function(e){
    if (isDown === false) {

        isDown = true;

        var pos = getMousePos(canvas, e);
        x1 = pos.x;
        y1 = pos.y;
    }
});

// when mouse button is released (note: window, not canvas here)
$(window).on('mouseup', function(e){

    if (isDown === true) {

        var pos = getMousePos(canvas, e);
        x2 = pos.x;
        y2 = pos.y;

        isDown = false;

        //we got two sets of coords, process them
        alert(x1 + ',' + y1 + ',' +x2 + ',' +y2);
    }
});

// get mouse pos relative to canvas (yours is fine, this is just different)
function getMousePos(canvas, evt) {
    var rect = canvas.getBoundingClientRect();
    return {
        x: evt.clientX - rect.left,
        y: evt.clientY - rect.top
    };
}

那么我们为什么要听mouse upwindow呢?如果您将鼠标移到 之外canvas,然后释放鼠标按钮,则该事件将不会注册到canvas. 所以我们需要监听一个全局事件,比如window.

由于我们已经标记了isDown鼠标按下事件,我们知道下面的鼠标“属于”画布(当我们检查isDown标志时)。

于 2013-06-27T15:02:00.037 回答
0

使用像 $('#myCanvas').mousedown 和 $('#myCanvas').mouseup 这样的接收器

于 2013-06-27T12:40:24.323 回答
0

那么,你需要拖放吗?嗯,这很容易:首先你检测到'onclick',如果你的目标(矩形,圆等)保存点到变量,'onmousemove'你正在移动对象,然后'onmousedown'你得到最后一点.

希望对您有所帮助!

于 2013-06-27T14:16:38.660 回答