-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (171 loc) · 5.3 KB
/
index.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mars Rover</title>
<link rel="icon" href="images/mars-rover.png">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
</head>
<body>
<div class="world">
<table>
<tr id="row01">
<td id="00" class="active history ">00</td>
<td id="01">01</td>
<td id="02">02</td>
<td id="03">03</td>
<td id="04">04</td>
<td id="05">05</td>
<td id="06">06</td>
<td id="07">07</td>
<td id="08">08</td>
<td id="09">09</td>
</tr>
<tr id="row1">
<td id="10">10</td>
<td id="11">11</td>
<td id="12">12</td>
<td id="13">13</td>
<td id="14">14</td>
<td id="15">15</td>
<td id="16">16</td>
<td id="17">17</td>
<td id="18">18</td>
<td id="19">19</td>
</tr>
<tr id="row2">
<td id="20">20</td>
<td id="21">21</td>
<td id="22">22</td>
<td id="23">23</td>
<td id="24">24</td>
<td id="25">25</td>
<td id="26">26</td>
<td id="27">27</td>
<td id="28">28</td>
<td id="29">29</td>
</tr>
<tr id="row3">
<td id="30">30</td>
<td id="31">31</td>
<td id="32">32</td>
<td id="33">33</td>
<td id="34">34</td>
<td id="35">35</td>
<td id="36">36</td>
<td id="37">37</td>
<td id="38">38</td>
<td id="39">39</td>
</tr>
<tr id="row4">
<td id="40">40</td>
<td id="41">41</td>
<td id="42">42</td>
<td id="43">43</td>
<td id="44">44</td>
<td id="45">45</td>
<td id="46">46</td>
<td id="47">47</td>
<td id="48">48</td>
<td id="49">49</td>
</tr>
<tr id="row5">
<td id="50">50</td>
<td id="51">51</td>
<td id="52">52</td>
<td id="53">53</td>
<td id="54">54</td>
<td id="55">55</td>
<td id="56">56</td>
<td id="57">57</td>
<td id="58">58</td>
<td id="59">59</td>
</tr>
<tr id="row6">
<td id="60">60</td>
<td id="61">61</td>
<td id="62">62</td>
<td id="63">63</td>
<td id="64" class="active3 history3">64</td>
<td id="65">65</td>
<td id="66" >66</td>
<td id="67">67</td>
<td id="68">68</td>
<td id="69">69</td>
</tr>
<tr id="row7">
<td id="70">70</td>
<td id="71">71</td>
<td id="72">72</td>
<td id="73">73</td>
<td id="74">74</td>
<td id="75">75</td>
<td id="76">76</td>
<td id="77">77</td>
<td id="78">78</td>
<td id="79">79</td>
</tr>
<tr id="row8">
<td id="80">80</td>
<td id="81">81</td>
<td id="82">82</td>
<td id="83">83</td>
<td id="84">84</td>
<td id="85">85</td>
<td id="86">86</td>
<td id="87">87</td>
<td id="88">88</td>
<td id="89">89</td>
</tr>
<tr id="row9">
<td id="90">90</td>
<td id="91">91</td>
<td id="92">92</td>
<td id="93">93</td>
<td id="94">94</td>
<td id="95">95</td>
<td id="96">96</td>
<td id="97">97</td>
<td id="98">98</td>
<td id="99" class="active2 history2">99</td>
</tr>
</table>
</div>
<div class="controlArea">
<div class="roverArea">
<h2 id="grTitle">Green Rover</h2>
<button id="grf"><i class="fas fa-arrow-up"></i></button><br />
<button id="grl"><i class="fas fa-arrow-left"></i></button>
<button id="grb"><i class="fas fa-arrow-down"></i></button>
<button id="grr"><i class="fas fa-arrow-right"></i></button><br />
<input class="radioRover" type="radio" id="rbgr" name="rover" value="gr">
</div>
<div class="roverArea">
<h2 id="brTitle">Blue Rover</h2>
<button id="brf"><i class="fas fa-arrow-up"></i></button><br />
<button id="brl"><i class="fas fa-arrow-left"></i></button>
<button id="brb"><i class="fas fa-arrow-down"></i></button>
<button id="brr"><i class="fas fa-arrow-right"></i></button><br />
<input class="radioRover" type="radio" id="rbbr" name="rover" value="br">
</div>
<div class="roverArea">
<h2 id="rrTitle">Red Rover</h2>
<button id="rrf"><i class="fas fa-arrow-up"></i></button><br />
<button id="rrl"><i class="fas fa-arrow-left"></i></button>
<button id="rrb"><i class="fas fa-arrow-down"></i></button>
<button id="rrr"><i class="fas fa-arrow-right"></i></button><br />
<input class="radioRover" type="radio" id="rbrr" name="rover" value="rr">
</div>
<strong>Control the selected Rover with your Keyboard Arrows!</strong> <br /><br />
<button id="myBtn">Try it</button>
</div>
<div class="github">
<a href="https://github.com/rhahne/lab-mars-rover">
<img height="50" src="images/githublogo.png" alt="github-logo" />
</a>
</div>
<script src="javascripts/jquery.js"></script>
<script src="javascripts/app.js"></script>
</body>
</html>