1
我目前正在製作一個遊戲,其中積木掉落,你必須避免它們。我有一些jQuery代碼,將塊添加到div
,名爲遊戲。如何移動一個div的孩子沒有任何事件
我無法選擇每一個產生的div
,並使它們向下移動而沒有點擊。 Here is the GitHub link這裏的example
這裏是jQuery代碼(一部分)
function spawn_block(){
$spawned_block = $("<div class='block'></div>")
$game.append($spawned_block); //add div with class block to #game div
var left=getRandomInt(0, $game.width()-$spawned_block.width()); //gets a random value from left of screen where div can appear
var top=getRandomInt(0, $game.height()-$spawned_block.height()); //not useful unless you don't want the div to appear at the top
//adds a random position and color to spawned_block
$spawned_block.css({
"left": left,
"background-color": getRandomColor()
});
//if you want a random position from top add "top" : top,
};
if($spawned_block.position.top < $game.position.top + $game.height) {
$spawned_block.css("top", "+=25px");
}
這最後一段代碼是我在函數的末尾加上一句,我我做錯了?
我很感謝您的幫助,但它仍然不適合我! :(仍然,大thx讓我看看我的基本錯誤 – FlipFloop
@FlipFloop如果你可以更新你的問題或你的GitHub與最新版本的代碼,我可以修改我的答案,以更好地幫助你。 – laef
我更新了! thx爲你的幫助 – FlipFloop