当前位置: 代码迷 >> JavaScript >> HTML5画布:找出点击坐标是否在给定的矩形内
  详细解决方案

HTML5画布:找出点击坐标是否在给定的矩形内

热度:56   发布时间:2023-06-05 11:38:47.0

可能有些人在这个困境中有类似的经历,可以帮助我在这里......

基本上,我有一个canvas元素,我在其中使用循环绘制几个矩形

context.fillRect (x, y, width, height)

现在,我希望一些矩形成为热点并响应点击事件。 我可以使用event.layerXevent.layerY点击事件的确切(x,y)。

鉴于我知道以下内容:

  • 点击的确切x,y
  • 每个矩形的x,y,宽度和高度

如何确定点击事件是否发生在周边某个矩形内
和,
click事件发生在哪个矩形0n?

有没有像这样的数学公式?

任何帮助将不胜感激,如果我不够清楚,请告诉我......

谢谢

编辑
没有比绕过所有矩形并检查它们的位置和尺寸更好的方法吗?

这是使用地图时经常遇到的一般拓扑问题。

决定点是否在任何多边形(矩形,圆形,不规则形状)内的算法如下:

  • 从被检查的点开始构造任何方向上的任何线,直到您的多边形所在的屏幕区域的边缘

  • 如果该线与奇数个位置处的任何多边形边界相交,则它该多边形内

  • 如果该线与任何多边形边界相交,则它该多边形之外偶数个位置。

      ------------ | | | o--|------------------- 1 intersection: inside | | ------------- ------------ | | o------|-----------|------------------- 2 intersections: outside | | ------------- 

笔记:

  • 线的方向是无关紧要的

  • 如果在没有关闭的情况下在屏幕侧面切割多边形,则无法工作

  • 如果多边形切割自身,那么如果线恰好穿过切割点,则算法可能会失败(例如,图8中的线被视为单个多边形,其中线正好穿过图中连接的上部和下部连接处)

我讨厌在这里发布大量的代码,但是这里有一个可以帮助你的js类......

function Point(x,y){
    this.x=x;
    this.y=y;
}

function Polygon(){
    this.points=[];
    this.x_min=undefined;
    this.x_max=undefined;
    this.y_min=undefined;
    this.y_max=undefined;

    this.add = function(p){
        this.points=this.points.concat(p);
        if (p.x<this.x_min){this.x_min=p.x;}
        if (p.x>this.x_max){this.x_max=p.x;}
        if (p.y<this.y_min){this.y_min=p.y;}
        if (p.y>this.y_min){this.y_max=p.y;}
    }

    this.pointInPoly = function(p){
        var j=(this.points.length-1);  //start by testing the link from the last point to the first point
        var isOdd=false;

        //check the bounding box conditions
        if (p.x < this.x_min || p.x > this.x_max || p.y < this.y_min || p.y > this.y_max){
            return false;
        }

        //if necessary use the line crossing algorithm
        for(var i=0; i<this.points.length; i++){
            if ((this.points[i].y<p.y && this.points[j].y>=p.y) ||  
                (this.points[j].y<p.y && this.points[i].y>=p.y)) {
                    if (this.points[i].x+(p.y-this.points[i].y)/(this.points[j].y-
                        this.points[i].y)*(this.points[j].x-this.points[i].x)<p.x)
                    { isOdd=(!isOdd);} }
            j=i;
        }
        return isOdd;
    }
}

PS:您需要使用以下函数将您的点击事件转换为本地坐标(其中e是您的点击事件):

function getPosition(e){
    var p = new Point();
    if (e.pageX != undefined && e.pageY != undefined) {
        p.x = e.pageX;
        p.y = e.pageY;
     }
     else {
        p.x = e.clientX + document.body.scrollLeft +
                document.documentElement.scrollLeft;
        p.y = e.clientY + document.body.scrollTop +
                document.documentElement.scrollTop;
    }
    p.x -= gCanvas.offsetLeft;
    p.y -= gCanvas.offsetTop;


    return p;
}

我最近创建了一个用于检测矩形鼠标点击的API。 这是非常基本的,但它应该解决你的问题
你可以在找到它。
注意:它目前没有按钮的文本支持,但它确实支持一些基本样式
文档: 代码:

function canvasButton(x, y, w, h, style , text) {
  this.style = style
  this.x = x || 0;
  this.y = y || 0;
  this.w = w || 1;
  this.h = h || 1;
  this.fill = style.default.fill ;
  this.text = text || undefined;
  this.onclick = function() {alert("Click! Make sure to add the onclick listener to your button!")}
  this.mouseup = function() {alert("Mouseup! Make sure to add the mouseup listener to your button!")}
  this.addListener = function() {
    var buttonX = this.x;
    var buttonY = this.y;
    var buttonWidth = this.w;
    var buttonHeight = this.h;
    var onclick = this.onclick
    var mouseup = this.mouseup
    var styles = this.style
    var draw = this.draw
    var ctx = this.ctx
    this.ctx.canvas.addEventListener('mousedown',function(e){
        var click_x = e.clientX;
        var click_y = e.clientY;
        if ( click_x >= buttonY && click_x <= buttonX + buttonWidth && click_y >= buttonY && click_y <= buttonY + buttonHeight ) {  
            onclick()
            ctx.fillStyle = style.active.fill
            ctx.fillRect(buttonX, buttonY, buttonWidth, buttonHeight);
        }
    })
    this.ctx.canvas.addEventListener('mouseup',function(e) {
        var click_x = e.clientX;
        var click_y = e.clientY;
        if ( click_x >= buttonY && click_x <= buttonX + buttonWidth && click_y >= buttonY && click_y <= buttonY + buttonHeight ) {  
            mouseup()
            ctx.fillStyle = style.default.fill
            ctx.fillRect(buttonX, buttonY, buttonWidth, buttonHeight);

        }

    })
  }

}

// Draws this shape to a given context
canvasButton.prototype.draw = function(ctx) {
  this.ctx = ctx
  ctx.fillStyle = this.fill;
  ctx.font = this.font
  ctx.fillRect(this.x, this.y, this.w, this.h);
  ctx.fillText(this.text,this.x,this.y)
  this.addListener();
}


//Use it like this:
var start = new canvasButton(x,y,height,width,{ // Styles
    "default": {
        "fill":"#765",

    }, 
    "active": {
        "fill":"#876",

    } 
})
//Event Listeners
start.mousedown = function() {

}
start.mouseup = function() {

}
start.draw(document.getElementById("canvas").getContext("2d")); // Draw to canvas

粗略地说,你可以这样做:

var click_x = event.layerX;
var click_y = event.layerY;

for ( var i = 0; i < rects.length; i++ ) {
    var rect = rects[i];
    if ( click_x >= rect.x && click_x <= rect.x + rect.width
    &&   click_y >= rect.y && click_y <= rect.y + rect.height ) {
        // The click was inside the rectange
    }
}

假设我们正在处理非负宽度和高度:)

这可能有些过分,但Cake JS将完成矩形和其他形状的工作。