我在简单的HTML页面中有一个canvas元素,并且使用context.fillRect()方法绘制了几个矩形。我需要与这些绘制的矩形进行交互。

我该怎么办?如何将onclick或onmouseover与这些矩形绑定(bind)在一起?

最佳答案

您需要跟踪坐标并检查鼠标是否位于以下矩形之一中:http://jsfiddle.net/eGjak/13/

显然,除了click之外,您还可以使用mouseover

var ctx = $('#cv').get(0).getContext('2d');

var rects = [[0, 0, 100, 100], [0, 150, 50, 100]]; // [x, y, width, height]
for(var i=0;i<rects.length;i++) {
    ctx.fillRect(rects[i][0], // fill at (x, y) with (width, height)
                 rects[i][1],
                 rects[i][2],
                 rects[i][3]);
}

$('#cv').click(function(e) {
    var x = e.offsetX,
        y = e.offsetY;

    for(var i=0;i<rects.length;i++) { // check whether:
        if(x > rects[i][0]            // mouse x between x and x + width
        && x < rects[i][0] + rects[i][2]
        && y > rects[i][1]            // mouse y between y and y + height
        && y < rects[i][1] + rects[i][3]) {
            alert('Rectangle ' + i + ' clicked');
        }
    }
});

关于javascript - 与 Canvas 矩形交互,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6452791/

10-11 23:23