检查某些div之间的冲突 [英] Check collision between certain divs

查看:43
本文介绍了检查某些div之间的冲突的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何检查某些div之间的冲突?

How can I check for collision between certain divs?

此刻,我正在使用 getBoundingClientRect(),但它会检查每个div:

At the moment I'm using getBoundingClientRect(), but it checks for every div:

if (this.getBoundingClientRect()) {
    animateContinue = 1;
}

我将如何检查特定的?使用此 for 循环,我可以获得要检查的div的ID:

How would I go about checking specific ones? Using this for loop, I can get the IDs of the divs I want to check:

for (var x = 1; x <= noOfBoxArt; x++) {
    console.log('#boxArt' + x);
}

推荐答案

好吧,我最终使用了此副本.起作用的功能是:

Okay, I ended up using a modified version of this duplicate. The function which does the work is:

var overlaps = (function () {
    function getPositions( elem ) {
        var pos, width, height;
        pos = $( elem ).position();
        width = $( elem ).width() / 2;
        height = $( elem ).height();
        return [ [ pos.left, pos.left + width ], [ pos.top, pos.top + height ] ];
    }

    function comparePositions( p1, p2 ) {
        var r1, r2;
        r1 = p1[0] < p2[0] ? p1 : p2;
        r2 = p1[0] < p2[0] ? p2 : p1;
        return r1[1] > r2[0] || r1[0] === r2[0];
    }

    return function ( a, b ) {
        var pos1 = getPositions( a ),
            pos2 = getPositions( b );
        return comparePositions( pos1[0], pos2[0] ) && comparePositions( pos1[1], pos2[1] );
    };
})();

它通过使用 overlaps(div1,div2); 调用(返回true或false).

And it is called by using overlaps( div1, div2 ); (returns true or false).

这篇关于检查某些div之间的冲突的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆