基于HTML的游戏:使用jQuery检测冲突

时间:2011-03-25 07:48:32

标签: jquery collision-detection

我正在开发一款带有两个div的气球游戏。一个是水平移动而另一个是垂直移动。

问题是当两个div相互接触时我无法触发功能。

2 个答案:

答案 0 :(得分:0)

将每个电影部分创建为单独的对象

使用settimeinterval

每隔一秒或几毫秒找到每个创建对象的坐标

如果物体坐标相同或在边界内;破坏物体。

答案 1 :(得分:0)

function detectCollision(){

    //detect the top and let of balloon 1
   //detect the top and left of balloon 2
   //check if the top and left are same or in a required range
}

以一定的时间间隔调用此功能,具体取决于您的移动速度,这将检测到碰撞