-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path34.html
More file actions
397 lines (394 loc) · 12.1 KB
/
34.html
File metadata and controls
397 lines (394 loc) · 12.1 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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style type="text/css">
*{
margin:0;
padding: 0;
}
table{
border-spacing: 0;
border-collapse:0;
}
td{
border:1px solid #eee;
width:50px;
height:50px;
text-align:center;
font-weight: bold;
box-sizing:border-box;
}
.blank{
border:none;
}
#robot-box{
background:url(./img/QQ.jpg) no-repeat;
background-size: contain;
width:50px;
height:50px;
position:absolute;
top:50px;
left:50px;
transition: all 1s;
}
ul{
position:absolute;
top:50px;
right:50px;
font-size:1.5rem;
}
</style>
</head>
<body>
<table>
<tr>
<td class="blank"></td>
<td class="blank">1</td>
<td class="blank">2</td>
<td class="blank">3</td>
<td class="blank">4</td>
<td class="blank">5</td>
<td class="blank">6</td>
<td class="blank">7</td>
<td class="blank">8</td>
<td class="blank">9</td>
<td class="blank">10</td>
</tr>
<tr>
<td class="blank">1</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">2</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">3</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">4</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">5</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">6</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">7</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">8</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">9</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="blank">10</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<!-- <div class="robot-box" id="robot-box"></div> -->
<input type="text" id="command_input">
<input type="button" id="command_button" value="GO">
<input type="button" id="turn_left" value="TUN LEF">
<input type="button" id="turn_right" value="TUN RIG">
<input type="button" id="turn_back" value="TUN BAC">
<ul>
<li>GO:确认按钮,不填任何指令则默认向头顶朝的方向前进一格</li>
<li>TUN LEF:向左转(逆时针旋转90度)</li>
<li>TUN RIG:向右转(顺时针旋转90度)</li>
<li>TUN BAC:向右转(旋转180度)</li>
<li>TRA LEF:向屏幕的左侧移动一格,方向不变</li>
<li>TRA TOP:向屏幕的上面移动一格,方向不变</li>
<li>TRA RIG:向屏幕的右侧移动一格,方向不变</li>
<li>TRA BOT:向屏幕的下面移动一格,方向不变</li>
<li>MOV LEF:方向转向屏幕左侧,并向屏幕的左侧移动一格</li>
<li>MOV TOP:方向转向屏幕上面,向屏幕的上面移动一格</li>
<li>MOV RIG:方向转向屏幕右侧,向屏幕的右侧移动一格</li>
<li>MOV BOT:方向转向屏幕下面,向屏幕的下面移动一格</li>
</ul>
<script type="text/javascript">
// var robot = document.getElementById("robot_box");
var cmd_btn = document.getElementById("command_button");
//用GO去监听文本框的所以i不拿文本框了
var t_left = document.getElementById("turn_left");
var t_right = document.getElementById("turn_right");
var t_back = document.getElementById("turn_back");
class RobotBox {
constructor(){
this.deg = 0;
this.face = 0;
this.xPos = 50;
this.yPos = 50;
this.robot = document.createElement("div");
}
turnLeft(){
this.deg -= 90;
this.robot.style.transform = "rotateZ(" +this.deg + "deg)";
this.face=(this.face+4-1)%4;
}
turnRight(){
this.deg+=90;
this.robot.style.transform = "rotateZ("+this.deg+"deg)";
// this.robot.style="transform: rotateZ(90deg);background-color:red;";
//这样直接修改style才需要写;
//rotateZ里面不能写; 因为我们修改的是transform
//style="transform: rotateZ(90deg);"自动添加;
this.face=(this.face+1)%4;
}
turnBack(){
this.deg+=180;
this.robot.style.transform = "rotateZ("+this.deg+"deg)";
this.face=(this.face+2)%4;
}
go(){
var command_input = document.getElementById("command_input").value;
if(command_input=="TUN LEF")
{
this.turnLeft();
}
else if(command_input=="TUN RIG"){
this.turnRight();
}
else if(command_input=="TUN BAG"){
this.turnBack();
}
else if(command_input=="")
{
if(this.face==0)
{
if(this.yPos-50>=50)
{
this.yPos-=50;
this.robot.style.top = this.yPos+"px";
}
}
else if(this.face==1)
{
if(this.xPos+50<=550)
{
this.xPos+=50;
this.robot.style.left = this.xPos+"px";
}
}
else if(this.face==2){
if(this.yPos+50<=550)
{
this.yPos+=50;
this.robot.style.top = this.yPos+"px";
}
}
else if(this.face==3)
{
if(this.xPos-50>=50)
{
this.xPos-=50;
this.robot.style.left = this.xPos+"px";
}
}
}
else if(command_input=="TRA LEF")
{
if(this.xPos-50>=50)
{
this.xPos-=50;
this.robot.style.left = this.xPos+"px";
}
}
else if(command_input=="TRA TOP")
{
if(this.yPos-50>=50)
{
this.yPos-=50;
this.robot.style.top = this.yPos+"px";
}
}
else if(command_input=="TRA RIG")
{
if(this.xPos+50<=550)
{
this.xPos+=50;
this.robot.style.top = this.xPos+"px";
}
}
else if(command_input=="TRA BOT")
{
if(this.yPos+50<=550)
{
this.yPos+=50;
this.robot.style.top = this.yPos+"px";
}
}
else if(command_input=="MOV LEF")
{
if(this.xPos-50>=50)
{
this.xPos-=50;
this.robot.style.left = this.xPos+"px";
this.face=3;
this.deg = -90;
this.robot.style.transform="rotateZ(-90deg)"
// this.robot.style.transform = "rotateZ(" +-90 + "deg)";
}
}
else if(command_input=="MOV TOP")
{
if(this.yPos-50>=50)
{
this.yPos-=50;
this.robot.style.top = this.yPos+"px";
this.face=0;
this.deg = 0;
this.robot.style.transform="rotateZ(0deg)"
}
}
else if(command_input=="MOV RIG")
{
if(this.xPos+50<=550)
{
this.xPos+=50;
this.robot.style.top = this.xPos+"px";
this.face=1;
this.deg = 90;
this.robot.style.transform="rotateZ(90deg)"
}
}
else if(command_input=="MOV BOT")
{
if(this.yPos+50<=550)
{
this.yPos+=50;
this.robot.style.top = this.yPos+"px";
this.face=2;
this.deg = 180;
this.robot.style.transform="rotateZ(180deg)"
}
}
else{
alert("输入TUN LEF或TUN RIG或TUN BAG或不输入");
}
}
init(name){
this.robot.id=name;
document.body.appendChild(this.robot);
}
};
var robot = new RobotBox("robot-box");
robot.init("robot-box");
// cmd_btn.addEventListener("click",robot.go,false);
// t_left.addEventListener("click",robot.turnLeft,false);
// t_right.addEventListener("click",robot.turnRight,false);
// t_back.addEventListener("click",robot.turnBack,false);
//上面这种写法,会把RoboxBox的turnLeft作为t_left的触发事件,但触发该事件的是t_left
//相当于t_left.robot.turnLeft(),所以this指向t_left
//所以调用时t_left的this指向t_left,所以会疯狂报错
//两种解决方法,一种像下面,写成function然后robot.turnLeft()这样turnLeft的this指向robot
//第二种,RobotBox里的函数改成箭头函数写法()=>{}这样函数里的this永远指向RobotBox
cmd_btn.addEventListener("click",function(){robot.go();},false);
t_left.addEventListener("click",function(){robot.turnLeft();},false);
t_right.addEventListener("click",function(){robot.turnRight();},false);
t_back.addEventListener("click",function(){robot.turnBack();},false);
</script>
</body>
</html>