我在Pong的一個簡單的(或者我認爲的)遊戲中使用jQuery Collision。沒有人工智能或在線互動,只有兩個槳和一個或兩個現實生活中的球員可以控制的球。jQuery碰撞插件|如何真正檢查是否有碰撞
當試圖對球進行動畫處理並檢查它是否與任何東西實際相撞時,我就會變短。我已經閱讀了SourceForge上的文檔(參見上面的鏈接),但是我仍然在如何實際檢查對撞機是否實際觸及任何東西方面有點失落。在我看來,這些文檔可以使用一些例子。
JavaScript代碼,我目前有:
$(document).ready(function()
{
var ball = $("#ball");
var topPaddle = $("topPaddle");
var bottomPaddle = $("bottomPaddle");
var topPaddleHits = $("#ball").collision("#topPaddle", { mode: "collision", obstacleData: "topOData" });
var bottomPaddleHits = $("#ball").collision("#bottomPaddle", { mode: "collision", obstacleData: "bottomOData" });
var anim = setInterval(function()
{
ball.css({ "left": "+=5", "top": "+=5" });
if (bottomPaddleHits.data("bottomOData") == bottomPaddle)
{
anim = clearInterval(anim);
alert("Bottom paddle hit!");
}
}, 50);
});
我也試過if (bottomPaddleHits == 1)
但這是沒有好,無論是。
CSS的頂部/底部槳和球,如果它的問題:
#ball
{
width: 10px;
height: 10px;
position: absolute;
background: #FFF;
top: 200px;
left: 100px;
}
#topPaddle
{
position: absolute;
width: 300px;
height: 10px;
background: lime;
top: 100px;
left: 50px;
}
#bottomPaddle
{
position: absolute;
width: 300px;
height: 10px;
background: lime;
bottom: 100px;
left: 50px;
}
我只是不知道如何去檢查,如果有什麼東西竟然打與否。
。 – 2013-03-28 07:28:00
的jQuery 1.9.1和jQuery UI 1.10.2均來自谷歌的CDN工作, – Xenolithic 2013-03-28 07:31:13
很確定1.8以上的東西無法工作,因爲API已經改變。 – 2013-03-28 07:33:47