我正在开发一个带有两个div的简单气球游戏。问题是,当两个div相互接触时,我无法触发功能。
答案 0 :(得分:57)
您正在寻找边界框碰撞检测。如果你想提出一个事件,你必须反复测试,但最好只是在游戏循环中对所有游戏对象运行该功能。沙箱位于http://jsfiddle.net/nGRwt/7/
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;
}
答案 1 :(得分:11)
您可以尝试jquery-collision加jquery-ui-draggable-collision。完全披露:我刚刚在sourceforge上编写并发布了这些内容。
第一个允许:
var hit_list = $("#collider").collision(".obstacle");
这是与“#collider”重叠的所有“.obstacle”的列表。
第二个允许:
$("#collider").draggable( { obstacle: ".obstacle" } );
这给你(除其他外)一个“碰撞”事件要绑定到:
$("#collider").bind( "collision", function(event,ui){...} );
你甚至可以设置:
$("#collider").draggable( { obstacle: ".obstacle", preventCollision: true } );
防止“#collider”在拖动时与任何“.obstacle”重叠。
答案 2 :(得分:0)
使用本机Javascript
var is_colliding = function(div1, div2) {
var d1_height = div1.offsetHeight;
var d1_width = div1.offsetWidth;
var d1_distance_from_top = div1.offsetTop + d1_height;
var d1_distance_from_left = div1.offsetLeft + d1_width;
var d2_height = div2.offsetHeight;
var d2_width = div2.offsetWidth;
var d2_distance_from_top = div2.offsetTop + d2_height;
var d2_distance_from_left = div2.offsetLeft + d2_width;
var not_colliding =
d1_distance_from_top < div2.offsetTop ||
div1.offsetTop > d2_distance_from_top ||
d1_distance_from_left < div2.offsetTop ||
div1.offsetLeft > d2_distance_from_left;
return !not_colliding;
};
答案 3 :(得分:0)
上面Victor S的答案很有用,但我需要检查两个div是否完全重叠,即是否被遮盖(但这很难用Google搜索,因为结果被对Eclipse IDE的引用污染了。)
分享我的修改版本,以防有人发现它有用:
$(function() {
/**
* Function to determine whether the first element completely
* eclipses the second element
*/
function collision($div2, $div1) {
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;
return x1 > x2 && y1 > y2 && b1 < b2 && r1 < r2
? true
: false
}
// draggable jQuery listener required jQuery UI
// Just used to illustrate the above
$('#div1,#div2').draggable({
drag: function() {
if (collision($('#div1'), $('#div2'))) {
$('#div2').text('Eclipsing').css({'background-color': 'grey'})
} else {
$('#div2').text('Not eclipsing').css({'background-color': 'green'})
}
$('#result').text(collision($('#div1'), $('#div2')));
}
});
});
.box {
display: table-cell;
vertical-align: middle;
text-align: center;
}
#div1 {
width: 200px;
height: 200px;
background-color: pink;
}
#div2 {
width: 75px;
height: 75px;
background-color: green;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.9.2/jquery-ui.min.js"></script>
<strong>Drag divs around.</strong>
<p>Eclipsing? <span id="result">false</span>
<div id="wrapper">
<div id="div1" class="box">
Div1
</div><br/>
<div id="div2" class="box">
Not eclipsing
</div>
</div>