-
Notifications
You must be signed in to change notification settings - Fork 0
/
controlpanel_hard.html
36 lines (34 loc) · 1.52 KB
/
controlpanel_hard.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Control Panel Hard Test</title>
<link href="styles/main.css" rel="stylesheet" />
<script language="JavaScript" type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script language="JavaScript" type="text/javascript" src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script language="JavaScript" type="text/javascript" src="scripts/plugins/json2.js"></script>
<script language="JavaScript" type="text/javascript" src="scripts/plugins/jquery.cookie.js"></script>
<script language="JavaScript" type="text/javascript" src="scripts/plugins/jquery.jsoncookie.js"></script>
<script language="JavaScript" type="text/javascript" src="scripts/jquery.score.js"></script>
<script language="JavaScript" type="text/javascript" src="scripts/jquery.controlpanel.js"></script>
</head>
<body>
<div id="controlpanelhard">
<ul id="modules">
<li id="two" class="droppable">
<img class="draggable point_2" src="images/module/module_2.png" />
</li>
<li id="one" class="droppable">
<img class="draggable point_1" src="images/module/module_1.png" />
</li>
<li id="three" class="droppable">
<img class="draggable point_3" src="images/module/module_3.png" />
</li>
<li id="four" class="droppable">
<img class="draggable point_4" src="images/module/module_4.png" />
</li>
</ul>
<a class="tryitbutton" href="balloon.html"></a>
</div>
</body>
</html>