我试图在javascript中编写一个类似于as3.0的命中测试的函数。我将圆圈放置在 div 标签中定义的屏幕上,然后遍历所有圆圈以查看它们的位置是否重叠。
html文件中的内容:
<div class="balls">
<script>
for (i=0;i<10;i++){
document.write("<div id='ball"+i+"' class='ball'></div>");
}
</script>
</div>
使用 jquery 放置它们:
var amount = 10;
var height = 270;
var width = 450;
function setBalls(){
for (i=0;i<amount;i++){
$("#ball"+i).css('top',parseInt(Math.random()*height)+'px');
$("#ball"+i).css('left',parseInt(Math.random()*width)+'px');
for (j=0;j<i;j++){
hitTest($("#ball"+i),$("#ball"+j));
}
}
}
上面调用的 hitTest 函数:
function hitTest(object1,object2){
var left1 = parseInt(object1.css('left'));
var left2 = parseInt(object2.css('left'));
var top1 = parseInt(object1.css('top'));
var top2 = parseInt(object2.css('top'));
var width1 = parseInt(object1.width());
var width2 = parseInt(object2.width());
var height1 = parseInt(object1.height());
var height2 = parseInt(object2.height());
var horTest = false;
var verTest = false;
if (((left1 >= left2)&&(left1 <= left2 + width2))||((left2 >= left1)&&(left2 <= left1 + width1))){
horTest = true;
}
if (((top1 >= top2)&&(top1 <= top2 + height2))||((top2 >= top1)&&(top2 <= top1 + height1))){
verTest = true;
}
if(horTest&&verTest){
console.log("hit");
object1.css('top',parseInt(Math.random()*height)+'px');
object1.css('left',parseInt(Math.random()*width)+'px');
hitTest(object1,object2);
}
}
样式表信息:
.ball{
width:50px;
height:50px;
background:green;
border-radius:100%;
position:absolute;
}
.balls{
width:500px;
height:320px;
background:red;
position:absolute;
left:10px;
top:80px;
}
谁能解释一下它为什么会这样?
提前致谢
更新:我的算法肯定有错误。我现在用 20 个“球”试了一下,现在每次都破了