检测两个div是否重叠

时间:2012-12-23 16:51:46

标签: javascript jquery html collision gamequery

  

可能重复:
  How to detect if two divs touch with jquery?

我花了很多时间试图弄清楚如何检测两个div是否重叠 我尝试了gamequery插件并像这样使用它:

$("#" + checkform).collision("#" + checkform + "w").each(function(){
    alert("Collision");
});

你会使用gamequery插件和/或你会怎么做?

2 个答案:

答案 0 :(得分:13)

对每个元素使用getBoundingClientRect(),看看它们是否重叠。不需要jQuery。

答案 1 :(得分:3)

此处已有查询答案:How to detect if two divs touch with jquery?

作为参考,我在这里复制代码:

function collision($div1, $div2) {
      var x1 = $div1.offset().left;
      var y1 = $div1.offset().top;
      var h1 = $div1.outerHeight(true);
      var w1 = $div1.outerWidth(true);
      var b1 = y1 + h1;
      var r1 = x1 + w1;
      var x2 = $div2.offset().left;
      var y2 = $div2.offset().top;
      var h2 = $div2.outerHeight(true);
      var w2 = $div2.outerWidth(true);
      var b2 = y2 + h2;
      var r2 = x2 + w2;

      if (b1 < y2 || y1 > b2 || r1 < x2 || x1 > r2) return false;
      return true;
    }