2014-05-25 50 views
0

即時通訊嘗試建立一個網頁遊戲,顯示雜亂的辦公室房間背景和辦公室的元素,用戶需要找到這些元素。 有些事情是這樣的: http://www.games2rule.com/play/messy-office-room/9548如何創建尋找元素的網頁遊戲

什麼是正確的做法呢?任何可以節省時間的框架? 我應該使用畫布還是簡單的divs與綁定點擊事件的abosulte位置?例如創建在其上顯示該辦公室bacgkround並且例如膝上型主DIV:

<div id="office-background"> 
    <div id="laptop"></div> 
</div> 

的#辦公室背景將位置:相對於和筆記本電腦將在其上。

謝謝!

回答

1

您可以像您所描述的那樣擁有背景,並且可以使用筆記本電腦,椅子,打印機桌面等多種元素作爲div。然後,一旦找到這些元素,將它們拖放到另一個div的找到的籃子中。

http://jqueryui.com/draggable/

http://jqueryui.com/droppable/

這將允許你做什麼用的元素,而不僅僅是點擊使它更具交互性。

<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="utf-8"> 
<title>jQuery UI Droppable - Default functionality</title> 
    <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui  .css"> 
    <script src="//code.jquery.com/jquery-1.10.2.js"></script> 
    <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> 
    <link rel="stylesheet" href="/resources/demos/style.css"> 
    <style> 
    #draggable { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; } 
    #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; } 
</style> 
<script> 
$(function() { 
$("#draggable").draggable(); 
$("#droppable").droppable({ 
    drop: function(event, ui) { 
    $(this) 
     .addClass("ui-state-highlight") 
     .find("p") 
     .html("Dropped!"); 
    } 
    }); 
}); 
</script> 
</head> 
<body> 

<div id="draggable" class="ui-widget-content"> 
<p>Drag me to my target</p> 
</div> 

<div id="droppable" class="ui-widget-header"> 
    <p>Drop here</p> 
</div> 


</body> 
</html>