资料
表格
制度
合同
管理
职场
经营
创业
范文
总结
计划
作文
文章
美文
词句
教程
模板
图片
字体
图标
办公
人事
财务
生产
管理资源吧首页
>>>
教程
>>>
编程
>>>
JavaScript教程
>>>
js方块躲避游戏代码
鼠标拖动红色方块,就可以开始,不要让蓝色方块碰到你控制的红色方块
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- saved from url=(0037)http://www.xeron.org/cosas/escapa.htm --> <HTML><HEAD><TITLE>www.glzy8.com管理资源吧 Escapa!红方块躲避游戏</TITLE> <META http-equiv=Content-Type content="text/html; charset=windows-1252"> <img src="/_New/_cj/myeditor/sysimage/space.gif" class="ewebeditor__script" _ewebeditor_fake_tag="script" _ewebeditor_fake_value="%3CSCRIPT%20language%3DJavaScript%20type%3Dtext%2Fjavascript%3E%20%0D%0AisNS4%20%3D%20(document.layers)%20%3F%20true%20%3A%20false%3B%20%0D%0AisIE4%20%3D%20(document.all%20%26%26%20!document.getElementById)%20%3F%20true%20%3A%20false%3B%20%0D%0AisIE5%20%3D%20(document.all%20%26%26%20document.getElementById)%20%3F%20true%20%3A%20false%3B%20%0D%0AisNS6%20%3D%20(!document.all%20%26%26%20document.getElementById)%20%3F%20true%20%3A%20false%3B%20%0D%0Avar%20curX%2C%20curY%2C%20curX2%2C%20curY2%2C%20boxX%2C%20boxY%2C%20moving%3D0%2C%20touch%3D0%3B%20%0D%0Avar%20gametime%3D0%2C%20started%3D0%2C%20speed%3B%20%0D%0Avar%20starttime%2C%20endtime%2C%20finaltime%3D0%3B%20%2F%2Fpass%20finaltime%20to%20popup%20window%20to%20ask%20for%20initials%20%0D%0Avar%20enemyxdir%20%3D%20new%20Array(1%2C1%2C1%2C1)%3B%20%0D%0Avar%20enemyydir%20%3D%20new%20Array(1%2C1%2C1%2C1)%3B%20%0D%0Aif%20(isNS4%20%7C%7C%20isNS6)%7B%20%0D%0Adocument.captureEvents(Event.MOUSEUP%7CEvent.MOUSEDOWN%7CEvent.MOUSEMOVE)%3B%20%0D%0A%7D%20%0D%0Adocument.onmousedown%20%3D%20start%3B%20%0D%0Adocument.onmousemove%20%3D%20checkLocation%3B%20%0D%0Adocument.onmouseup%20%3D%20stop%3B%20%0D%0Afunction%20startclock()%20%7Bvar%20today%20%3D%20new%20Date()%3B%20starttime%20%3D%20today.getTime()%3B%7D%20%0D%0Afunction%20endclock()%20%7Bvar%20today%20%3D%20new%20Date()%3B%20endtime%20%3D%20today.getTime()%3B%7D%20%0D%0Afunction%20calctime()%20%7Bvar%20time%20%3D%20(endtime%20-%20starttime%20-%200)%2F1000%3B%20%20%20%20return%20time%3B%7D%20%0D%0Afunction%20giveposX(divname)%20%7B%20%0D%0A%20%20%20%20if%20(isNS4)%20var%20posLeft%20%3D%20document.layers%5Bdivname%5D.left%3B%20%0D%0A%20%20%20%20else%20if%20(isIE4%20%7C%7C%20isIE5)%20var%20posLeft%20%3D%20document.all(divname).style.pixelLeft%3B%20%0D%0A%20%20%20%20else%20if%20(isNS6)%20var%20posLeft%20%3D%20parseInt(document.getElementById(divname).style.left%20%2B%20%22%22)%3B%20%0D%0A%20%20%20%20return%20posLeft%3B%20%0D%0A%7D%20%0D%0Afunction%20giveposY(divname)%20%7B%20%0D%0A%20%20%20%20if%20(isNS4)%20var%20posTop%20%3D%20document.layers%5Bdivname%5D.top%3B%20%0D%0A%20%20%20%20else%20if%20(isIE4%20%7C%7C%20isIE5)%20var%20posTop%20%3D%20document.all(divname).style.pixelTop%3B%20%0D%0A%20%20%20%20else%20if%20(isNS6)%20var%20posTop%20%3D%20parseInt(document.getElementById(divname).style.top%20%2B%20%22%22)%3B%20%0D%0A%20%20%20%20return%20posTop%3B%20%0D%0A%7D%20%0D%0Afunction%20setposX(divname%2C%20xpos)%20%7B%20%0D%0A%20%20%20%20if%20(isNS4)%20document.layers%5Bdivname%5D.left%20%3D%20xpos%3B%20%0D%0A%20%20%20%20else%20if%20(isIE4%20%7C%7C%20isIE5)%20document.all(divname).style.pixelLeft%20%3D%20xpos%3B%20%0D%0A%20%20%20%20else%20if%20(isNS6)%20document.getElementById(divname).style.left%20%3D%20xpos%3B%20%0D%0A%7D%20%0D%0Afunction%20setposY(divname%2C%20ypos)%20%7B%20%0D%0A%20%20%20%20if%20(isNS4)%20document.layers%5Bdivname%5D.top%20%3D%20ypos%3B%20%0D%0A%20%20%20%20else%20if%20(isIE4%20%7C%7C%20isIE5)%20document.all(divname).style.pixelTop%20%3D%20ypos%3B%20%0D%0A%20%20%20%20else%20if%20(isNS6)%20document.getElementById(divname).style.top%20%3D%20ypos%3B%20%0D%0A%7D%20%0D%0Afunction%20givesize(divname%2C%20dimension)%20%7B%20%0D%0A%20%20%20%20var%20divsize%20%3D%200%3B%20%0D%0A%20%20%20%20%20%20%20%20if%20(dimension%20%3D%3D%20'y')%20%7B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20(isNS4)%20divsize%20%3D%20document.layers%5Bdivname%5D.clip.height%3B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20else%20if%20(isIE4%20%7C%7C%20isIE5)%20divsize%20%3D%20document.all(divname).style.pixelHeight%3B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20else%20if%20(isNS6)%20divsize%20%3D%20parseInt(document.getElementById(divname).style.height%20%2B%20%22%22)%3B%20%0D%0A%20%20%20%20%20%20%20%20%7D%20%0D%0A%20%20%20%20%20%20%20%20else%20if%20(dimension%20%3D%3D%20'x')%20%7B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20(isNS4)%20divsize%20%3D%20document.layers%5Bdivname%5D.clip.width%3B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20else%20if%20(isIE4%20%7C%7C%20isIE5)%20divsize%20%3D%20document.all(divname).style.pixelWidth%3B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20else%20if%20(isNS6)%20divsize%20%3D%20parseInt(document.getElementById(divname).style.width%20%2B%20%22%22)%3B%20%0D%0A%20%20%20%20%20%20%20%20%7D%20%0D%0A%20%20%20%20return%20divsize%3B%20%0D%0A%7D%20%0D%0A%2F%2F%20check%20to%20see%20if%20'box'%20is%20touching%20'enemy1'%20%0D%0Afunction%20checktouching(num)%20%7B%20%0D%0A%20%20%20%20var%20enemy%20%3D%20%22enemy%22%20%2B%20num%20%2B%20%22%22%20%0D%0A%20%20%20%20var%20difX%20%3D%20giveposX('box')%20-%20giveposX(enemy)%20-%200%3B%20%2F%2F%20-0%20converts%20to%20integer%20%0D%0A%20%20%20%20var%20difY%20%3D%20giveposY('box')%20-%20giveposY(enemy)%20-%200%3B%20%0D%0A%20%20%20%20%2F%2F%20set%20touch%20%3D%201%20if%20it%20is%20touching%20an%20enemy%20%0D%0A%20%20%20%20if%20(difX%20%3E%20(-1%20*%20givesize('box'%2C%20'x'))%20%26%26%20difX%20%3C%20givesize(enemy%2C%20'x')%20%26%26%20difY%20%3E%20(-1%20*%20givesize('box'%2C%20'y'))%20%26%26%20difY%20%3C%20givesize(enemy%2C%20'y'))%20%7B%20%0D%0A%20%20%20%20%20%20%20%20touch%20%3D%201%3B%20%0D%0A%20%20%20%20%7D%20%0D%0A%20%20%20%20else%20touch%20%3D%200%3B%20%0D%0A%7D%20%0D%0Afunction%20movenemy(num%2Cstep_x%2Cstep_y)%7B%20%0D%0A%20%20%20%20var%20enemy%20%3D%20%22enemy%22%20%2B%20num%20%2B%20%22%22%20%0D%0A%20%20%20%20var%20enemyx%20%3D%20givesize(enemy%2C%20'x')%3B%20%0D%0A%20%20%20%20var%20enemyy%20%3D%20givesize(enemy%2C%20'y')%3B%20%0D%0A%20%20%20%20if%20(giveposX(enemy)%20%3E%3D%20(450%20-%20enemyx)%20%7C%7C%20giveposX(enemy)%20%3C%3D%200)%20%7B%20%0D%0A%20%20%20%20%20%20%20%20enemyxdir%5Bnum%5D%20%3D%20-1%20*%20enemyxdir%5Bnum%5D%3B%20%0D%0A%20%20%20%20%20%20%20%20%7D%20%0D%0A%20%20%20%20if%20(giveposY(enemy)%20%3E%3D%20(450%20-%20enemyy)%20%7C%7C%20giveposY(enemy)%20%3C%3D%200)%20%7B%20%0D%0A%20%20%20%20%20%20%20%20enemyydir%5Bnum%5D%20%3D%20-1%20*%20enemyydir%5Bnum%5D%3B%20%0D%0A%20%20%20%20%20%20%20%20%7D%20%0D%0A%20%20%20%20var%20newposx%20%3D%20giveposX(enemy)%20%2B%20(step_x*enemyxdir%5Bnum%5D)%20%2B%200%3B%20%0D%0A%20%20%20%20var%20newposy%20%3D%20giveposY(enemy)%20%2B%20(step_y*enemyydir%5Bnum%5D)%20%2B%200%3B%20%0D%0A%20%20%20%20setposX(enemy%2C%20newposx)%3B%20%0D%0A%20%20%20%20setposY(enemy%2C%20newposy)%3B%20%0D%0A%20%20%20%20checktouching(num%20%2B%20%22%22)%3B%20%0D%0A%20%20%20%20if%20(touch%20%3D%3D%201)%20%7B%20%0D%0A%20%20%20%20%20%20%20%20stop()%3B%20reset()%3B%20%0D%0A%20%20%20%20%20%20%20%20%7D%20%0D%0A%7D%20%0D%0Afunction%20movenemies()%20%7B%20%0D%0A%20%20%20%20gametime%20%3D%20gametime%20%2B%201%20%0D%0A%20%20%20%20if%20(gametime%20%3E%3D%200%20%26%26%20gametime%20%3C%20100)%20speed%20%3D%2080%3B%20%0D%0A%20%20%20%20else%20if%20(gametime%20%3E%3D%20100%20%26%26%20%20gametime%20%3C%20200)%20speed%20%3D%2060%3B%20%0D%0A%20%20%20%20else%20if%20(gametime%20%3E%3D%20200%20%26%26%20%20gametime%20%3C%20300)%20speed%20%3D%2040%3B%20%0D%0A%20%20%20%20else%20if%20(gametime%20%3E%3D%20300%20%26%26%20%20gametime%20%3C%20400)%20speed%20%3D%2030%3B%20%0D%0A%20%20%20%20else%20if%20(gametime%20%3E%3D%20400%20%26%26%20%20gametime%20%3C%20500)%20speed%20%3D%2020%3B%20%0D%0A%20%20%20%20else%20speed%20%3D%2010%3B%20%0D%0A%20%20%20%20%2F%2F%20window.status%20%3D%20%22speed%3A%20%20%22%20%2B%20speed%20%2B%20%22%20%20%20gametime%3A%20%22%20%2B%20gametime%3B%20%0D%0A%20%20%20%20movenemy(0%2C-10%2C12)%3B%20%0D%0A%20%20%20%20movenemy(1%2C-12%2C-20)%3B%20%0D%0A%20%20%20%20movenemy(2%2C15%2C-13)%3B%20%0D%0A%20%20%20%20movenemy(3%2C17%2C11)%3B%20%0D%0A%20%20%20%20setTimeout(movenemies%2Cspeed)%3B%20%0D%0A%7D%20%0D%0Afunction%20start(e)%20%7B%20%0D%0A%20%20%20%20if%20(started%20%3D%3D%200)%20%7B%20%20%20%20movenemies()%3B%20%20%20%20%20startclock()%3B%20%20%20%20%20started%20%3D%201%3B%20%20%20%20%7D%20%0D%0A%20%20%20%20curX%20%3D%20(isNS4%20%7C%7C%20isNS6)%20%3F%20e.pageX%20%3A%20window.event.x%20%3B%20%0D%0A%20%20%20%20curY%20%3D%20(isNS4%20%7C%7C%20isNS6)%20%3F%20e.pageY%20%3A%20window.event.y%20%3B%20%0D%0A%20%20%20%20curX2%20%3D%20eval(curX%20-%2040)%3B%20%0D%0A%20%20%20%20curY2%20%3D%20eval(curY%20-%2040)%3B%20%0D%0A%20%20%20%20boxX%20%3D%20eval(curX%20-%2020)%3B%20%0D%0A%20%20%20%20boxY%20%3D%20eval(curY%20-%2020)%3B%20%0D%0A%20%20%20%20var%20boxleft%20%3D%20giveposX('box')%3B%20%0D%0A%20%20%20%20var%20boxtop%20%3D%20giveposY('box')%3B%20%0D%0A%20%20%20%20if%20(curX%20%3E%20boxleft%20%26%26%20curX2%20%3C%20boxleft%20%26%26%20curY%20%3E%20boxtop%20%26%26%20curY2%20%3C%20boxtop)%20%7B%20%0D%0A%20%20%20%20%20%20%20%20moving%20%3D%201%3B%20%0D%0A%20%20%20%20%20%20%20%20setposX('box'%2C%20boxX)%3B%20%0D%0A%20%20%20%20%20%20%20%20setposY('box'%2C%20boxY)%3B%20%0D%0A%20%20%20%20%20%20%20%20if%20(isNS4%20%7C%7C%20isNS6)%7B%20%0D%0A%20%20%20%20%20%20%20%20document.captureEvents(Event.MOUSEMOVE)%3B%20%0D%0A%20%20%20%20%20%20%20%20%7D%20%0D%0A%20%20%20%20%7D%20%0D%0A%7D%20%0D%0Afunction%20stop(e)%7B%20%0D%0A%20%20%20%20moving%3D0%3B%20%0D%0A%20%20%20%20if%20(isNS4%20%7C%7C%20isNS6)%7B%20%0D%0A%20%20%20%20document.releaseEvents(Event.MOUSEMOVE)%3B%20%0D%0A%20%20%20%20%7D%20%0D%0A%7D%20%0D%0Afunction%20reset(e)%7B%20%0D%0A%20%20%20%20endclock()%3B%20%0D%0A%20%20%20%20moving%3D0%3B%20%0D%0A%20%20%20%20if%20(isNS4%20%7C%7C%20isNS6)%7B%20%0D%0A%20%20%20%20%20%20%20%20document.releaseEvents(Event.MOUSEMOVE)%3B%20%0D%0A%20%20%20%20%20%20%20%20%7D%20%0D%0A%20%20%20%20if%20(finaltime%20%3D%3D%200)%20%7B%20%0D%0A%20%20%20%20%20%20%20%20finaltime%20%3D%20calctime()%3B%20%0D%0A%20%20%20%20%20%20%20%20window.alert('You%20hold%20'%20%2B%20finaltime%20%2B%20'%20seconds...%20salutations%20Fp')%3B%20%0D%0A%2F%2F%20%20%20%20%20%20%20%20var%20entername%20%3D%20window.confirm('Enter%20your%20name%3F')%3B%20%0D%0A%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20if%20(entername)%20%7B%20%0D%0A%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20window.open(%22%3F%22%20%2B%20finaltime%2C'winwin'%2C'width%3D300%2Cheight%3D500%2Cleft%3D40%2Ctop%3D40%2Cstatus%3D1%2Cresizable')%3B%20%0D%0A%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20document.location.reload()%3B%20%0D%0A%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20%7D%20%0D%0A%2F%2F%20%20%20%20%20%20%20%20%20%20%20%20else%20document.location.reload()%3B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20document.location.reload()%3B%20%0D%0A%20%20%20%20%20%20%20%20%7D%20%0D%0A%7D%20%0D%0Afunction%20checkLocation(e)%7B%20%0D%0A%20%20%20%20%20%20%20%20curX%20%3D%20(isNS4%20%7C%7C%20isNS6)%20%3F%20e.pageX%20%3A%20window.event.x%20%3B%20%0D%0A%20%20%20%20%20%20%20%20curY%20%3D%20(isNS4%20%7C%7C%20isNS6)%20%3F%20e.pageY%20%3A%20window.event.y%20%3B%20%0D%0A%20%20%20%20%20%20%20%20boxX%20%3D%20eval(curX%20-%2020)%3B%20%0D%0A%20%20%20%20%20%20%20%20boxY%20%3D%20eval(curY%20-%2020)%3B%20%0D%0A%20%20%20%20checktouching('1')%3B%20%0D%0A%20%20%20%20if%20(moving%20%3D%3D%201%20%26%26%20touch%20%3D%3D%200)%7B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20setposX('box'%2CboxX)%3B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20setposY('box'%2CboxY)%3B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20(curY%20%3E%2069%20%26%26%20curX%20%3E%2069%20%26%26%20curY%20%3C%20381%20%26%26%20curX%20%3C%20381)%20return%20false%3B%20%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20else%20stop()%3B%20reset()%3B%20%0D%0A%20%20%20%20%7D%20%0D%0A%20%20%20%20else%20if%20(touch%20%3D%3D%201)%7B%20%0D%0A%20%20%20%20stop()%3B%20reset()%3B%20%0D%0A%20%20%20%20%7D%20%0D%0A%7D%20%0D%0A%3C%2FSCRIPT%3E"> <META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD> <BODY text=#000000 bgColor=#ffffff leftMargin=0 topMargin=0 marginwidth="0" marginheight="0"> <DIV id=box style="LEFT: 205px; WIDTH: 40px; POSITION: absolute; TOP: 205px; HEIGHT: 40px; BACKGROUND-COLOR: #990000; layer-background-color: #990000"> <table height=40 width=40> <TBODY> <TR> <TD> </TD></TD></TR></TBODY></TABLE></DIV> <DIV id=enemy0 style="LEFT: 270px; WIDTH: 60px; POSITION: absolute; TOP: 60px; HEIGHT: 50px; BACKGROUND-COLOR: #000099; layer-background-color: #000099"> <table height=50 width=60> <TBODY> <TR> <TD> </TD></TR></TBODY></TABLE></DIV> <DIV id=enemy1 style="LEFT: 300px; WIDTH: 100px; POSITION: absolute; TOP: 330px; HEIGHT: 20px; BACKGROUND-COLOR: #000099; layer-background-color: #000099"> <table height=20 width=100> <TBODY> <TR> <TD> </TD></TR></TBODY></TABLE></DIV> <DIV id=enemy2 style="LEFT: 70px; WIDTH: 30px; POSITION: absolute; TOP: 320px; HEIGHT: 60px; BACKGROUND-COLOR: #000099; layer-background-color: #000099"> <table height=60 width=30> <TBODY> <TR> <TD> </TD></TR></TBODY></TABLE></DIV> <DIV id=enemy3 style="LEFT: 70px; WIDTH: 60px; POSITION: absolute; TOP: 70px; HEIGHT: 60px; BACKGROUND-COLOR: #000099; layer-background-color: #000099"> <table height=60 width=60> <TBODY> <TR> <TD> </TD></TR></TBODY></TABLE></DIV> <table cellSpacing=0 cellPadding=0 border=0><!-- row 1 --> <TBODY> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR><!-- row 2 --> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR><!-- row 3 --> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR><!-- row 4 --> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR><!-- row 5 --> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR><!-- row 6 --> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR><!-- row 7 --> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR><!-- row 8 --> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR><!-- row 9 --> <TR> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD> <TD width=50 bgColor=#000000 height=50> <table> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE> <font face="verdana,arial,helvetica" size="2"> </font><div style="position: absolute; width: 285px; height: 293px; z-index: 1; left: 467px; top: 32px" id="layer1"> Click onto the red block with jump over it: Move the red block avoiding crash with the blue ones Don抰 touch the black edge. If you can reach more than 18 seconds, you are a genius. It is said that the pilots from the US Air Force are forced to reach 2 MINUTES.</div> </BODY></HTML>
[Ctrl+A 全选 注:
如需引入外部Js需刷新才能执行
]
教程首页
更多教程