-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (74 loc) · 1.74 KB
/
index.html
File metadata and controls
75 lines (74 loc) · 1.74 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html>
<head>
<title>Logic JS</title>
<H1>LogicJS</H1>
<style type="text/css">
#code_window{
background-color: black;
color: white;
width: 200px;
height: 200px;
float: left;
}
#f1{
background-color: black;
color: white;
width: 200px;
height: 200px;
float: right;
margin-top: 0px;
}
#f2{
background-color: black;
color: white;
width: 200px;
height: 200px;
float: right;
margin-top: 0px;
}
#code_wrapper{
background-color: lightgreen;
color: black;
margin-left: 650px;
margin-top: -480px;
width: 600px;
text-align: left;
}
body{
background: brown;
}
</style>
</head>
<body>
<script type="text/javascript" src="JS/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="JS/paths.js"></script>
<script type="text/javascript" src="JS/gameClasses.js"></script>
<script type="text/javascript" src="JS/map.js"></script>
<script type="text/javascript" src="JS/sprite.js"></script>
<script type="text/javascript" src="JS/fsm.js"></script>
<script type="text/javascript" src="JS/gameloop.js"></script>
<script type="text/javascript">
</script>
<div id="code_wrapper">
<label>Main</label><br/>
<textarea id ="code_window">
</textarea><br/>
<div style="float:left;margin-top:-37px">
<label>Function1</label><br/>
<textarea id ="f1">
</textarea>
</div>
<div style="float:right;margin-top:-37px">
<label>Function2</label><br/>
<textarea id ="f2">
</textarea>
</div>
<BUTTON id="go_button">go</BUTTON>
<BUTTON id="reset_button">Reset</BUTTON>
<BUTTON id="navmode_add">Turn on Nav mode</BUTTON>
<BUTTON id="navmode_remove" style="display:none">Turn off Nav mode</BUTTON>
<BUTTON id="show_path">Show me the path</BUTTON>
<BUTTON id="hide_path" style="display:none">Hide the path</BUTTON>
</div>
</body>
</html>