-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.html
42 lines (41 loc) · 2.26 KB
/
editor.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
37
38
39
40
41
42
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link type="text/css" rel="stylesheet" href="style/style-editor.css"/>
<link type="text/css" rel="stylesheet" href="style/jquery-ui-1.8.9.custom.css"/>
<script type="text/javascript" src="script/json2.js"></script>
<script type="text/javascript" src="script/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="script/jquery-ui.min.js"></script>
<script type="text/javascript" src="script/editor.js"></script>
<script type="text/javascript" src="script/levels.js"></script>
<title>Yam - Editor</title>
</head>
<body>
<div id="conf">
<label for="lvl">Levels : </label><select id="lvl"></select><br/>
<span id="add">+ add </span><br/>
<span id="show">- show</span><br/>
</div>
<div id="game-area">
<div id="form">
<label for="c">c : </label><select id="c"></select><br/>
<label for="p">p : </label><select id="p"></select><br/>
<div id="m"><label for="mcheck">m : </label><input id="mcheck" type="checkbox"/></div>
<div id="o"><label for="ocheck">o : </label><input id="ocheck" type="checkbox"/></div>
<div style="text-align : center">
<span id="ok"> ok </span><span id="cancel">cancel</span>
</div>
</div>
<div id="blocEditor">
<label for="bc">c : </label><select id="bc"></select><br/>
<label for="bp">p : </label><select id="bp"></select><br/>
<div id="bm"><label for="bmcheck">m : </label><input id="bmcheck" type="checkbox"/></div>
<div id="bo"><label for="bocheck">o : </label><input id="bocheck" type="checkbox"/></div>
<div id="remove"><span id="remove-text"> remove bloc</span></div>
<div style="text-align : center">
<span id="bok"> ok </span><span id="bcancel">cancel</span>
</div>
</div>
</div>
</body>
</html>