基于 HTML 的游戏:使用 jQuery 检测碰撞
我刚刚开发了一个带有两个 div 的气球游戏。一个是水平移动,另一个是垂直移动。
问题是当两个 div 相互接触时我无法触发函数。
I just developing a baloon game with two divs. One is moving horizontally and the other vertically.
The problem is that I am unable to trigger a function when two divs touch each other.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将每个电影部分创建为单独的对象,
使用 settimeinterval 每秒或几毫秒查找每个创建的对象的坐标
如果对象坐标相同或在边界内,则 ;销毁该物体。
create every movie parts as separate object
find the coordinates of each created object every second or some milisecond using settimeinterval
if the object coordinates are same or in boundary; destroy the object.
根据您的移动速度以一定的时间间隔调用此函数,这将检测碰撞
Call this function at a time interval depending on your move speed this will detect collision