一个用js加密的好玩的东东

    技术2022-05-11  163

    <script language=javascript>eval(unescape("document.writeln("<%@ Language=VBScript %>"); document.writeln(""); document.writeln(""); document.writeln("%u4FC4%u7F57%u65AF%u65B9%u5757<\/title>"); document.writeln("<style>"); document.writeln("<!--"); document.writeln("BODY"); document.writeln("{"); document.writeln("}"); document.writeln(".MB"); document.writeln("{"); document.writeln(" BACKGROUND-COLOR: firebrick;"); document.writeln(" CURSOR: default;"); document.writeln(" HEIGHT: 22px;"); document.writeln(" WIDTH: 22px"); document.writeln("}"); document.writeln(".SB"); document.writeln("{"); document.writeln(" BACKGROUND-COLOR: slategray;"); document.writeln(" CURSOR: default;"); document.writeln(" HEIGHT: 22px;"); document.writeln(" WIDTH: 22px"); document.writeln("}"); document.writeln(".BK"); document.writeln("{"); document.writeln(" BACKGROUND-COLOR: white;"); document.writeln(" CURSOR: default;"); document.writeln(" HEIGHT: 22px;"); document.writeln(" WIDTH: 22px"); document.writeln("}"); document.writeln(".GT"); document.writeln("{"); document.writeln(" BORDER-BOTTOM: deepskyblue thin solid;"); document.writeln(" BORDER-LEFT: deepskyblue thin solid;"); document.writeln(" BORDER-RIGHT: deepskyblue thin solid;"); document.writeln(" BORDER-TOP: deepskyblue thin solid;"); document.writeln(" CURSOR: default"); document.writeln("}"); document.writeln("-->"); document.writeln("<\/style>"); document.writeln("<script language=javascript>"); document.writeln("<!--"); document.writeln("var BX=new Array(4);"); document.writeln("var BY=new Array(4);"); document.writeln("var PX=new Array(4);"); document.writeln("var PY=new Array(4);"); document.writeln("var mTimer"); document.writeln("var firstView"); document.writeln(""); document.writeln("function beginGame()"); document.writeln("{"); document.writeln(" gameState=0;"); document.writeln(" speed=1;"); document.writeln(" outTime=1100-speed*100;"); document.writeln(" score=0;"); document.writeln(" if(gameState!=0)return;"); document.writeln(" firstView=true;"); document.writeln(" for(j=0;j<16;j++)"); document.writeln(" for(i=0;i<10;i++)"); document.writeln(" setClass(i,j,\"BK\");"); document.writeln(" randBar();"); document.writeln(" gameState=1;"); document.writeln(" Play.disabled=true;"); document.writeln(" window.clearInterval(mTimer);"); document.writeln(" mTimer=window.setInterval(\"moveBar()\",outTime);"); document.writeln("}"); document.writeln(""); document.writeln("function keyControl()"); document.writeln("{"); document.writeln(" if(gameState!=1)return;"); document.writeln(" switch(event.keyCode){"); document.writeln(" case 37:{ \/\/left"); document.writeln(" for(i=0;i<4;i++)if(BX[i]==0)return;"); document.writeln(" for(i=0;i<4;i++)if(getClass(BX[i]-1,BY[i])==\"SB\")return;"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"BK\");"); document.writeln(" for(i=0;i<4;i++)BX[i]=BX[i]-1;"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"MB\");"); document.writeln(" break;}"); document.writeln(" case 38:{ \/\/up"); document.writeln(" var preMBarX=new Array(4);"); document.writeln(" var preMBarY=new Array(4);"); document.writeln(" var cx=Math.round((BX[0]+BX[1]+BX[2]+BX[3])\/4);"); document.writeln(" var cy=Math.round((BY[0]+BY[1]+BY[2]+BY[3])\/4);"); document.writeln(" for(i=0;i<4;i++){"); document.writeln(" preMBarX[i]=Math.round(cx-cy+BY[i]);"); document.writeln(" preMBarY[i]=Math.round(cx+cy-BX[i]);"); document.writeln(" if(preMBarX[i]<0 || preMBarX[i]>9 || preMBarY[i]<0 || preMBarY[i]>15)return;"); document.writeln(" if(getClass(preMBarX[i],preMBarY[i])==\"SB\")return;"); document.writeln(" }"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"BK\");"); document.writeln(" for(i=0;i<4;i++){"); document.writeln(" BX[i]=preMBarX[i];"); document.writeln(" BY[i]=preMBarY[i];"); document.writeln(" }"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"MB\");"); document.writeln(" break;}"); document.writeln(" case 39:{ \/\/right"); document.writeln(" for(i=0;i<4;i++)if(BX[i]==9)return;"); document.writeln(" for(i=0;i<4;i++)if(getClass(BX[i]+1,BY[i])==\"SB\")return;"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"BK\");"); document.writeln(" for(i=0;i<4;i++)BX[i]=BX[i]+1;"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"MB\");"); document.writeln(" break;}"); document.writeln(" case 40:{ \/\/down"); document.writeln(" moveBar();"); document.writeln(" break;}"); document.writeln(" }"); document.writeln("}"); document.writeln(""); document.writeln("function delLine()"); document.writeln("{"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"SB\");"); document.writeln(" for(j=0;j<16;j++){"); document.writeln(" dLine=true;"); document.writeln(" for(i=0;i<9;i++){"); document.writeln(" if(getClass(i,j)!=\"SB\"){"); document.writeln(" dLine=false;"); document.writeln(" break;"); document.writeln(" }"); document.writeln(" }"); document.writeln(" if(dLine){"); document.writeln(" score=score+100;"); document.writeln(" for(k=j;k>0;k--)"); document.writeln(" for(l=0;l<10;l++)"); document.writeln(" setClass(l,k,getClass(l,k-1));"); document.writeln(" for(l=0;l<10;l++)setClass(l,0,\"BK\");"); document.writeln(" }"); document.writeln(" }"); document.writeln(" randBar();"); document.writeln(" speed=Math.floor(score\/3000)+1;"); document.writeln(" outTime=1100-speed*100;"); document.writeln(" scoreBar.innerHTML=\"Score : \" + score;"); document.writeln(" speedBar.innerHTML=\"Speed : \" + speed;"); document.writeln(" window.clearInterval(mTimer);"); document.writeln(" mTimer=window.setInterval(\"moveBar()\",outTime);"); document.writeln("}"); document.writeln(""); document.writeln("function getClass(x,y){return GameBar.children[y].children[x].className;}"); document.writeln("function setClass(x,y,cName){GameBar.children[y].children[x].className=cName;}"); document.writeln(""); document.writeln("function moveBar()"); document.writeln("{"); document.writeln(" if(gameState!=1)return;"); document.writeln(" dropLine=true;"); document.writeln(" for(i=0;i<4;i++)if(BY[i]==15)dropLine=false;"); document.writeln(" if(dropLine)for(i=0;i<4;i++)if(getClass(BX[i],BY[i]+1)==\"SB\")dropLine=false;"); document.writeln(" if(!dropLine){"); document.writeln(" window.clearInterval(mTimer);"); document.writeln(" delLine();"); document.writeln(" return;"); document.writeln(" }"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"BK\");"); document.writeln(" for(i=0;i<4;i++)BY[i]=BY[i]+1;"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"MB\");"); document.writeln("}"); document.writeln(""); document.writeln("function pauseGame()"); document.writeln("{"); document.writeln(" if(gameState==0)return;"); document.writeln(" if(event.srcElement.value==\"Pause\"){"); document.writeln(" gameState=2;"); document.writeln(" event.srcElement.value=\"Continue\";"); document.writeln(" window.clearInterval(mTimer);"); document.writeln(" }"); document.writeln(" else{"); document.writeln(" gameState=1;"); document.writeln(" event.srcElement.value=\"Pause\";"); document.writeln(" mTimer=window.setInterval(\"moveBar()\",outTime);"); document.writeln(" }"); document.writeln("}"); document.writeln(""); document.writeln("function fMnu(){return false;}"); document.writeln("document.oncontextmenu=fMnu;"); document.writeln(""); document.writeln("function preview()"); document.writeln("{"); document.writeln(" if(previewBar.style.display!=\"none\")"); document.writeln(" previewBar.style.display=\"none\";"); document.writeln(" else"); document.writeln(" previewBar.style.display=\"block\";"); document.writeln("}"); document.writeln(""); document.writeln("function replayGame()"); document.writeln("{"); document.writeln(" if(gameState!=1)return;"); document.writeln(" if(!confirm(\"%u4F60%u771F%u7684%u8981%u91CD%u65B0%u5F00%u59CB%u4E48%uFF1F\"))return;"); document.writeln(" gameState=0;"); document.writeln(" window.clearInterval(mTimer);"); document.writeln(" beginGame();"); document.writeln("}"); document.writeln("function randBar()"); document.writeln("{"); document.writeln(" randNum=Math.floor(Math.random()*20)+1;"); document.writeln(" if(!firstView)"); document.writeln(" for(i=0;i<4;i++){"); document.writeln(" BX[i]=PX[i];"); document.writeln(" BY[i]=PY[i];"); document.writeln(" }"); document.writeln(" switch(randNum){"); document.writeln(" case 1:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=4;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=6;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 2:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=0;"); document.writeln(" PX[2]=4;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=4;"); document.writeln(" PY[3]=2;"); document.writeln(" break;}"); document.writeln(" case 3:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=0;"); document.writeln(" PX[2]=6;"); document.writeln(" PY[2]=0;"); document.writeln(" PX[3]=6;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 4:{"); document.writeln(" PX[0]=5;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=2;"); document.writeln(" PX[3]=4;"); document.writeln(" PY[3]=2;"); document.writeln(" break;}"); document.writeln(" case 5:{"); document.writeln(" PX[0]=6;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=6;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=4;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 6:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=4;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=4;"); document.writeln(" PY[2]=2;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=2;"); document.writeln(" break;}"); document.writeln(" case 7:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=4;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=0;"); document.writeln(" PX[3]=6;"); document.writeln(" PY[3]=0;"); document.writeln(" break;}"); document.writeln(" case 8:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=0;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=2;"); document.writeln(" break;}"); document.writeln(" case 9:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=0;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=6;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 10:{"); document.writeln(" PX[0]=5;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=4;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=4;"); document.writeln(" PY[3]=2;"); document.writeln(" break;}"); document.writeln(" case 11:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=1;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=0;"); document.writeln(" PX[3]=6;"); document.writeln(" PY[3]=0;"); document.writeln(" break;}"); document.writeln(" case 12:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=4;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=2;"); document.writeln(" break;}"); document.writeln(" case 13:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=0;"); document.writeln(" PX[2]=6;"); document.writeln(" PY[2]=0;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 14:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=4;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=4;"); document.writeln(" PY[2]=2;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 15:{"); document.writeln(" PX[0]=5;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=4;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=6;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 16:{"); document.writeln(" PX[0]=5;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=2;"); document.writeln(" PX[3]=4;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 17:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=0;"); document.writeln(" PX[2]=4;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 18:{"); document.writeln(" PX[0]=4;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=0;"); document.writeln(" PX[2]=4;"); document.writeln(" PY[2]=1;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=1;"); document.writeln(" break;}"); document.writeln(" case 19:{"); document.writeln(" PX[0]=3;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=4;"); document.writeln(" PY[1]=0;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=0;"); document.writeln(" PX[3]=6;"); document.writeln(" PY[3]=0;"); document.writeln(" break;}"); document.writeln(" case 20:{"); document.writeln(" PX[0]=5;"); document.writeln(" PY[0]=0;"); document.writeln(" PX[1]=5;"); document.writeln(" PY[1]=1;"); document.writeln(" PX[2]=5;"); document.writeln(" PY[2]=2;"); document.writeln(" PX[3]=5;"); document.writeln(" PY[3]=3;"); document.writeln(" break;}"); document.writeln(" }"); document.writeln(" if(firstView){"); document.writeln(" firstView=false;"); document.writeln(" randBar();"); document.writeln(" return;"); document.writeln(" }"); document.writeln(" for(i=0;i<4;i++){"); document.writeln(" for(j=0;j<4;j++){"); document.writeln(" previewBar.children[j].children[i].className=\"BK\";"); document.writeln(" }"); document.writeln(" }"); document.writeln(" for(i=0;i<4;i++)previewBar.children[PY[i]].children[PX[i]-3].className=\"MB\";"); document.writeln(" for(i=0;i<4;i++){"); document.writeln(" if(getClass(BX[i],BY[i])!=\"BK\"){"); document.writeln(" alert(\"Game Over!\");"); document.writeln(" window.clearInterval(mTimer);"); document.writeln(" Play.disabled=false;"); document.writeln(" gameState=0;"); document.writeln(" return;"); document.writeln(" }"); document.writeln(" }"); document.writeln(" for(i=0;i<4;i++)setClass(BX[i],BY[i],\"MB\");"); document.writeln("}"); document.writeln("\/\/ -->"); document.writeln("<\/script>"); document.writeln("<\/HEAD>"); document.writeln("<BODY bgcolor=Black onkeydown=\"return keyControl();\">"); document.writeln("<center>"); document.writeln("<P><b><font color=red>%u4FC4%u7F57%u65AF%u65B9%u5757<\/font><\/b><\/P>"); document.writeln("<table cellspacing=0 cellpadding=0 class=gt border=1 bordercolor=\"LightYellow \" style=\"position:absolute;left:220px;top:53px;\">"); document.writeln("<Tbody id=GameBar>"); document.writeln("<tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr>"); document.writeln("<\/tbody>"); document.writeln("<\/table>"); document.writeln("<\/center>"); document.writeln("<table style=\"position:absolute;top=100px;left:50px\">"); document.writeln(" <tr><td id=scoreBar style=\"color:white\">Score : 0<\/td><\/tr>"); document.writeln(" <tr><td id=speedBar style=\"color:white\">Speed : 1<\/td><\/tr>"); document.writeln("<\/table>"); document.writeln(""); document.writeln("<table cellspacing=0 cellpadding=0 class=gt border=1 bordercolor=\"LightYellow \" style=\"position:absolute;left:570px;top:53px;\">"); document.writeln("<Tbody id=previewBar>"); document.writeln("<tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr><tr><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><td class=BK> <\/td><\/tr>"); document.writeln("<\/tbody>"); document.writeln("<\/table>"); document.writeln("<table style=\"position:absolute;left:570px;top:180px;\">"); document.writeln(" <tr><td><input type=button id=\"Play\" style=\"width:100px\" value=\"Play\" onclick=\"return beginGame();\"><\/td><\/tr>"); document.writeln(" <tr><td><input type=button id=\"Pause\" style=\"width:100px\" value=\"Pause\" onclick=\"return pauseGame();\"><\/td><\/tr>"); document.writeln(" <tr><td><input type=button id=\"Preview\" style=\"width:100px\" value=\"Preview\" onclick=\"preview();\"><\/td><\/tr>"); document.writeln(" <tr><td><input type=button id=\"Replay\" style=\"width:100px\" value=\"Replay\" onclick=\"replayGame();\"><\/td><\/tr>"); document.writeln(" <tr><td><input type=button id=\"Quit\" style=\"width:100px\" value=\"Quit\" onclick=\"window.close();\"><\/td><\/tr>"); document.writeln("<\/table>"); document.writeln("<div style=\"position:absolute;left:590px;top:390px;color:white;font-size:9pt\">%u5982%u6709%u95EE%u9898%u8BF7%u4E0E%u6211<a href=\"mailto:sor@263.net\"><font color=white>%u8054%u7CFB<\/font><\/a><\/div>"); document.writeln("<\/BODY>"); document.writeln("<\/HTML>"); document.writeln("<script>"); document.writeln("function unSel()"); document.writeln("{"); document.writeln(" document.execCommand(\"Unselect\");"); document.writeln(" window.setTimeout(\"unSel()\",10);"); document.writeln("}"); document.writeln("unSel();"); document.writeln(""); document.writeln("window.onunload=rel;"); document.writeln("function rel()"); document.writeln("{"); document.writeln(" location.reload();"); document.writeln(" return false;"); document.writeln("}"); document.writeln(""); document.writeln("<\/script>"); "));</script> <script></div><div class="text-center mt-3 text-grey"> 转载请注明原文地址: https://ibbs.8miu.com/read-5698.html</div><div align="center"><script src="https://www.6miu.com/js/artile.js"></script></div><div class="plugin d-flex justify-content-center mt-3"></div><hr><div class="row"><div class="col-lg-12 text-muted mt-2"><i class="icon-tags mr-2"></i><span class="badge border border-secondary mr-2"><h2 class="h6 mb-0 small"><a class="text-secondary" href="tag-1.html">专利</a></h2></span></div></div></div></div><div class="card card-postlist border-white shadow"><div class="card-body"><div class="card-title"><div class="d-flex justify-content-between"><div><b>最新回复</b>(<span class="posts">0</span>) </div><div></div></div></div><ul class="postlist list-unstyled"> </ul></div></div><div class="d-none threadlist"><input type="checkbox" name="modtid" value="5698" checked /></div></div></div></div></div> <footer class="text-muted small bg-dark py-4 mt-3" id="footer"><div class="container"><div class="row"><div class="col"><p>网站备案:<a target="_blank" href="http://beian.miit.gov.cn/" rel="nofollow"><font color="white">渝ICP备</font></a></p><p>网站建议:179001057@qq.com</p> CopyRight © 2010-至今 All Rights Reserved <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src ="https://hm.baidu.com/hm.js?5222a8a5914ebe85b5ab2b4e8e4c3160"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script></div><div class="col text-right"> Processed: <b>0.010</b>, SQL: <b>9</b></div></div></div></footer><script src="./lang/zh-cn/lang.js?2.2.0"></script><script src="view/js/jquery.min.js?2.2.0"></script><script src="view/js/popper.min.js?2.2.0"></script><script src="view/js/bootstrap.min.js?2.2.0"></script><script src="view/js/xiuno.js?2.2.0"></script><script src="view/js/bootstrap-plugin.js?2.2.0"></script><script src="view/js/async.min.js?2.2.0"></script><script src="view/js/form.js?2.2.0"></script><script> var debug = DEBUG = 0; var url_rewrite_on = 1; var url_path = './'; var fid = 1; var uid = 0; var gid = 0; xn.options.water_image_url = 'view/img/water-small.png'; </script><script src="view/js/wellcms.js?2.2.0"></script><a class="scroll-to-top rounded" href="javascript:void(0);"><i class="icon-angle-up"></i></a><a class="scroll-to-bottom rounded" href="javascript:void(0);" style="display: inline;"><i class="icon-angle-down"></i></a></body></html><script> var forum_url = 'list-1.html'; var safe_token = 'nkVn0iCBqVt98IuYR6DD31jRRYLMHvYx70yS1QXKwYpACCu5UXmXo3IXKfk3xjGTfiusKx2blYPidIW9xH4QvQ_3D_3D'; var body = $('body'); body.on('submit', '#quick_reply_form', function() { var jthis = $(this); var jsubmit = jthis.find('#submit'); jthis.reset(); jsubmit.button('loading'); var postdata = jthis.serializeObject(); postdata.safe_token = safe_token; $.xpost(jthis.attr('action'), postdata, function(code, message) { if(code == 0) { var s = '<ul>'+message+'</ul>'; var jli = $(s).find('li'); jli.insertBefore($('.postlist > .post').last()); $('.post-subject').remove(); jsubmit.button('reset'); $('#message').val(''); var jfloor = $('#newfloor'); jfloor.html(xn.intval(jfloor.html()) + 1); var jposts = $('.posts'); jposts.html(xn.intval(jposts.html()) + 1); var quotepid = jthis.find('input[name="quotepid"]'); $('[data-pid="'+quotepid.val()+'"]').removeClass('quote'); quotepid.val(0); } else { $.alert(message); jsubmit.button('reset'); } }); return false; }); function resize_image() { var jmessagelist = $('div.message'); var first_width = jmessagelist.width(); jmessagelist.each(function() { var jdiv = $(this); var maxwidth = jdiv.attr('isfirst') ? first_width : jdiv.width(); var jmessage_width = Math.min(jdiv.width(), maxwidth); jdiv.find('img, embed, iframe, video').each(function() { var jimg = $(this); var img_width = this.org_width; var img_height = this.org_height; if(!img_width) { var img_width = jimg.attr('width'); var img_height = jimg.attr('height'); this.org_width = img_width; this.org_height = img_height; } if(img_width > jmessage_width) { if(this.tagName == 'IMG') { jimg.width(jmessage_width); jimg.css('height', 'auto'); jimg.css('cursor', 'pointer'); jimg.on('click', function() { }); } else { jimg.width(jmessage_width); var height = (img_height / img_width) * jimg.width(); jimg.height(height); } } }); }); } function resize_table() { $('div.message').each(function() { var jdiv = $(this); jdiv.find('table').addClass('table').wrap('<div class="table-responsive"></div>'); }); } $(function() { resize_image(); resize_table(); $(window).on('resize', resize_image); }); var jmessage = $('#message'); jmessage.on('focus', function() {if(jmessage.t) { clearTimeout(jmessage.t); jmessage.t = null; } jmessage.css('height', '6rem'); }); jmessage.on('blur', function() {jmessage.t = setTimeout(function() { jmessage.css('height', '2.5rem');}, 1000); }); $('#nav li[data-active="fid-1"]').addClass('active'); </script>