温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

基于js的吃方块小游戏

发布时间:2020-07-09 19:41:37 来源:网络 阅读:397 作者:lgdzxt 栏目:web开发

<html>

小时候经常可以在电子游戏机上面玩这种打击方块的游戏,下面用纯粹的表格加js做一个 ,如果想看效果,将jquery文件复制到此游戏的跟目录下。目的只有一个:游戏中的jquery能工作。

<head> <title>吃方块</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">    

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

<script type="text/javascript" src="jquery-1.7.2.min.js"></script><!-- 根据此路径导入jquery文件-->

<!--

<link rel="stylesheet" type="text/css" href="styles.css">

-->

<script>

var time=4000;

var n1=1;

var a=0;

var x=0;

function load(){

//alert(112);

a++;

if(a==(20*n1)){

n1++;

alert("恭喜你,第"+n1+"关");

time=time*80/100;

}

$("#guan").html(n1);

for(var j=1;j<=15;j++){

for(var m=1;m<23;m++){

if(j==1){

var arr=["#0000ff","#ffff00"];

var n = Math.floor(Math.random()*arr.length+1)-1;

$("#"+1+"_"+m).css("background-color",arr[n]);

}else{

n=j-1;

$("#"+j+"_"+m).css("background-color",$("#"+n+"__"+m).css("background-color"));

}

}

}

for(var l=1;l<=15;l++){

for(var h=1;h<23;h++){

$("#"+l+"__"+h).css("background-color",$("#"+l+"_"+h).css("background-color"));

}

}

if(x==1){

over();

}

for(var f=1;f<23;f++){

if(document.getElementById(15+"_"+f).style.backgroundColor=="rgb(0, 0, 255)"){

x=1;

break;

}

}

//alert(11);

setTimeout("load();",time);

}

</script>

<script type="text/javascript">

function choose(){

var asciicode=event.keyCode;

var strcode=String.fromCharCode(asciicode);

//alert(document.getElementById(11).style.backgroundColor=="red");

if(strcode=="A"){

for(var i=1;i<23;i++){

var m=i-1;

if(document.getElementById(i).style.backgroundColor=="red"){

document.getElementById(m).style.backgroundColor="red";

document.getElementById(i).style.backgroundColor="yellow";

break;

}

}

}

if(strcode=="D"){

for(var j=1;j<23;j++){

var p=j+1;

if(document.getElementById(j).style.backgroundColor=="red"){

document.getElementById(p).style.backgroundColor="red";

document.getElementById(j).style.backgroundColor="yellow";

break;

}

}

}

for(var k=1;k<23;k++){

if(document.getElementById(k).style.backgroundColor=="red"){

$("#zId").val(k);

}

}

if(strcode=="J"){

if($("#tt").val()==1){

fire($("#zId").val(),15);

}

}

if(strcode=="H"){

if($("#fa").html()>=1){

for(var s=1;s<=15;s++){

for(var d=1;d<23;d++){

$("#"+s+"_"+d).css("background-color","#ffff00");

$("#"+s+"__"+d).css("background-color","#ffff00");

}

}

$("#fa2").val(parseInt($("#fa2").val(), 10)+1);

}

}

}

</script>

<script type="text/javascript">

function start1(){

//alert(22);

if($("#tt").val()==1){

alert("已经开始。不能重复开始");

}else{

$("#tt").val(1);

load();

}

}

</script>

<script type="text/javascript">

function fire(id,faId){

var time=20;

var aftId=faId+1;

if(document.getElementById(faId+"_"+id).style.backgroundColor=="rgb(0, 0, 255)"){

$("#"+faId+"_"+id).css("background-color","#ffff00");

$("#"+faId+"__"+id).css("background-color","#ffff00");

faId="";

$("#core").val(parseInt($("#core").val(),10)+100);

if($("#core").val()>=10000){

$("#fa1").val($("#core").val()/10000);

$("#fa").html(parseInt($("#fa1").val(),10)-parseInt($("#fa2").val(),10));

}

}

if(faId==1){

$("#"+faId+"_"+id).css("background-color","#ffff00");

}else{

$("#"+faId+"_"+id).css("background-color","#ff0000");

}

$("#"+aftId+"_"+id).css("background-color","#ffff00");

faId-=1;;

if(faId==-1){

faId="";

}

setTimeout("fire("+id+","+faId+");",time);

}

</script>

<script type="text/javascript" language="javascript">

function again(){

var total=0;

if($("#tt").val()==1){

alert("游戏已经开始,不能重置");

}else{

var arr=["#0000ff","#ffff00"];

for(var i=1;i<7;i++){

for(var j=1;j<23;j++){

var n = Math.floor(Math.random()*arr.length+1)-1;

$("#"+i+"_"+j).css("background-color",arr[n]);

if(arr[n]=="#0000ff"){

total++;

$("#total").val(total);

$("#coreTotal").val(total*100);

}

}

}

for(var q=1;q<=15;q++){

for(var p=1;p<23;p++){

$("#"+q+"__"+p).css("background-color",$("#"+q+"_"+p).css("background-color"));

}

}

}

}

function over(){

alert("游戏结束,总得分:"+$("#core").val());

window.location.reload();

}

</script>

</head>


<body onkeydown="choose()" onload="again()">

<input type="text" style="display:none" id="zId"/>

<input type="text" style="display:none" id="fa1"/>

<input type="text" style="display:none" id="fa2" value="0"/>

<input type="text" style="display:none" id="tt" value="0"/>

<input type="text" style="display:none" id="total" value="0"/>

<center>

<h2>此游戏对治疗近视有明显的效果</h2>

<table border="1" style="display:none" bordercolor="#000000" bgcolor="#ffff00">

<tr>

<td width="30px" height="30px" id="1__1">&nbsp;</td><td width="30px" height="30px" id="1__2">&nbsp;</td>

<td width="30px" height="30px" id="1__3">&nbsp;</td><td width="30px" height="30px" id="1__4">&nbsp;</td>

<td width="30px" height="30px" id="1__5">&nbsp;</td><td width="30px" height="30px" id="1__6">&nbsp;</td>

<td width="30px" height="30px" id="1__7">&nbsp;</td><td width="30px" height="30px" id="1__8">&nbsp;</td>

<td width="30px" height="30px" id="1__9">&nbsp;</td><td width="30px" height="30px" id="1__10">&nbsp;</td>

<td width="30px" height="30px" id="1__11">&nbsp;</td><td width="30px" height="30px" id="1__12">&nbsp;</td>

<td width="30px" height="30px" id="1__13">&nbsp;</td><td width="30px" height="30px" id="1__14">&nbsp;</td>

<td width="30px" height="30px" id="1__15">&nbsp;</td><td width="30px" height="30px" id="1__16">&nbsp;</td>

<td width="30px" height="30px" id="1__17">&nbsp;</td><td width="30px" height="30px" id="1__18">&nbsp;</td>

<td width="30px" height="30px" id="1__19">&nbsp;</td><td width="30px" height="30px" id="1__20">&nbsp;</td>

<td width="30px" height="30px" id="1__21">&nbsp;</td><td width="30px" height="30px" id="1__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="2__1">&nbsp;</td><td width="30px" height="30px" id="2__2">&nbsp;</td>

<td width="30px" height="30px" id="2__3">&nbsp;</td><td width="30px" height="30px" id="2__4">&nbsp;</td>

<td width="30px" height="30px" id="2__5">&nbsp;</td><td width="30px" height="30px" id="2__6">&nbsp;</td>

<td width="30px" height="30px" id="2__7">&nbsp;</td><td width="30px" height="30px" id="2__8">&nbsp;</td>

<td width="30px" height="30px" id="2__9">&nbsp;</td><td width="30px" height="30px" id="2__10">&nbsp;</td>

<td width="30px" height="30px" id="2__11">&nbsp;</td><td width="30px" height="30px" id="2__12">&nbsp;</td>

<td width="30px" height="30px" id="2__13">&nbsp;</td><td width="30px" height="30px" id="2__14">&nbsp;</td>

<td width="30px" height="30px" id="2__15">&nbsp;</td><td width="30px" height="30px" id="2__16">&nbsp;</td>

<td width="30px" height="30px" id="2__17">&nbsp;</td><td width="30px" height="30px" id="2__18">&nbsp;</td>

<td width="30px" height="30px" id="2__19">&nbsp;</td><td width="30px" height="30px" id="2__20">&nbsp;</td>

<td width="30px" height="30px" id="2__21">&nbsp;</td><td width="30px" height="30px" id="2__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="3__1">&nbsp;</td><td width="30px" height="30px" id="3__2">&nbsp;</td>

<td width="30px" height="30px" id="3__3">&nbsp;</td><td width="30px" height="30px" id="3__4">&nbsp;</td>

<td width="30px" height="30px" id="3__5">&nbsp;</td><td width="30px" height="30px" id="3__6">&nbsp;</td>

<td width="30px" height="30px" id="3__7">&nbsp;</td><td width="30px" height="30px" id="3__8">&nbsp;</td>

<td width="30px" height="30px" id="3__9">&nbsp;</td><td width="30px" height="30px" id="3__10">&nbsp;</td>

<td width="30px" height="30px" id="3__11">&nbsp;</td><td width="30px" height="30px" id="3__12">&nbsp;</td>

<td width="30px" height="30px" id="3__13">&nbsp;</td><td width="30px" height="30px" id="3__14">&nbsp;</td>

<td width="30px" height="30px" id="3__15">&nbsp;</td><td width="30px" height="30px" id="3__16">&nbsp;</td>

<td width="30px" height="30px" id="3__17">&nbsp;</td><td width="30px" height="30px" id="3__18">&nbsp;</td>

<td width="30px" height="30px" id="3__19">&nbsp;</td><td width="30px" height="30px" id="3__20">&nbsp;</td>

<td width="30px" height="30px" id="3__21">&nbsp;</td><td width="30px" height="30px" id="3__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="4__1">&nbsp;</td><td width="30px" height="30px" id="4__2">&nbsp;</td>

<td width="30px" height="30px" id="4__3">&nbsp;</td><td width="30px" height="30px" id="4__4">&nbsp;</td>

<td width="30px" height="30px" id="4__5">&nbsp;</td><td width="30px" height="30px" id="4__6">&nbsp;</td>

<td width="30px" height="30px" id="4__7">&nbsp;</td><td width="30px" height="30px" id="4__8">&nbsp;</td>

<td width="30px" height="30px" id="4__9">&nbsp;</td><td width="30px" height="30px" id="4__10">&nbsp;</td>

<td width="30px" height="30px" id="4__11">&nbsp;</td><td width="30px" height="30px" id="4__12">&nbsp;</td>

<td width="30px" height="30px" id="4__13">&nbsp;</td><td width="30px" height="30px" id="4__14">&nbsp;</td>

<td width="30px" height="30px" id="4__15">&nbsp;</td><td width="30px" height="30px" id="4__16">&nbsp;</td>

<td width="30px" height="30px" id="4__17">&nbsp;</td><td width="30px" height="30px" id="4__18">&nbsp;</td>

<td width="30px" height="30px" id="4__19">&nbsp;</td><td width="30px" height="30px" id="4__20">&nbsp;</td>

<td width="30px" height="30px" id="4__21">&nbsp;</td><td width="30px" height="30px" id="4__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="5__1">&nbsp;</td><td width="30px" height="30px" id="5__2">&nbsp;</td>

<td width="30px" height="30px" id="5__3">&nbsp;</td><td width="30px" height="30px" id="5__4">&nbsp;</td>

<td width="30px" height="30px" id="5__5">&nbsp;</td><td width="30px" height="30px" id="5__6">&nbsp;</td>

<td width="30px" height="30px" id="5__7">&nbsp;</td><td width="30px" height="30px" id="5__8">&nbsp;</td>

<td width="30px" height="30px" id="5__9">&nbsp;</td><td width="30px" height="30px" id="5__10">&nbsp;</td>

<td width="30px" height="30px" id="5__11">&nbsp;</td><td width="30px" height="30px" id="5__12">&nbsp;</td>

<td width="30px" height="30px" id="5__13">&nbsp;</td><td width="30px" height="30px" id="5__14">&nbsp;</td>

<td width="30px" height="30px" id="5__15">&nbsp;</td><td width="30px" height="30px" id="5__16">&nbsp;</td>

<td width="30px" height="30px" id="5__17">&nbsp;</td><td width="30px" height="30px" id="5__18">&nbsp;</td>

<td width="30px" height="30px" id="5__19">&nbsp;</td><td width="30px" height="30px" id="5__20">&nbsp;</td>

<td width="30px" height="30px" id="5__21">&nbsp;</td><td width="30px" height="30px" id="5__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="6__1">&nbsp;</td><td width="30px" height="30px" id="6__2">&nbsp;</td>

<td width="30px" height="30px" id="6__3">&nbsp;</td><td width="30px" height="30px" id="6__4">&nbsp;</td>

<td width="30px" height="30px" id="6__5">&nbsp;</td><td width="30px" height="30px" id="6__6">&nbsp;</td>

<td width="30px" height="30px" id="6__7">&nbsp;</td><td width="30px" height="30px" id="6__8">&nbsp;</td>

<td width="30px" height="30px" id="6__9">&nbsp;</td><td width="30px" height="30px" id="6__10">&nbsp;</td>

<td width="30px" height="30px" id="6__11">&nbsp;</td><td width="30px" height="30px" id="6__12">&nbsp;</td>

<td width="30px" height="30px" id="6__13">&nbsp;</td><td width="30px" height="30px" id="6__14">&nbsp;</td>

<td width="30px" height="30px" id="6__15">&nbsp;</td><td width="30px" height="30px" id="6__16">&nbsp;</td>

<td width="30px" height="30px" id="6__17">&nbsp;</td><td width="30px" height="30px" id="6__18">&nbsp;</td>

<td width="30px" height="30px" id="6__19">&nbsp;</td><td width="30px" height="30px" id="6__20">&nbsp;</td>

<td width="30px" height="30px" id="6__21">&nbsp;</td><td width="30px" height="30px" id="6__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="7__1">&nbsp;</td><td width="30px" height="30px" id="7__2">&nbsp;</td>

<td width="30px" height="30px" id="7__3">&nbsp;</td><td width="30px" height="30px" id="7__4">&nbsp;</td>

<td width="30px" height="30px" id="7__5">&nbsp;</td><td width="30px" height="30px" id="7__6">&nbsp;</td>

<td width="30px" height="30px" id="7__7">&nbsp;</td><td width="30px" height="30px" id="7__8">&nbsp;</td>

<td width="30px" height="30px" id="7__9">&nbsp;</td><td width="30px" height="30px" id="7__10">&nbsp;</td>

<td width="30px" height="30px" id="7__11">&nbsp;</td><td width="30px" height="30px" id="7__12">&nbsp;</td>

<td width="30px" height="30px" id="7__13">&nbsp;</td><td width="30px" height="30px" id="7__14">&nbsp;</td>

<td width="30px" height="30px" id="7__15">&nbsp;</td><td width="30px" height="30px" id="7__16">&nbsp;</td>

<td width="30px" height="30px" id="7__17">&nbsp;</td><td width="30px" height="30px" id="7__18">&nbsp;</td>

<td width="30px" height="30px" id="7__19">&nbsp;</td><td width="30px" height="30px" id="7__20">&nbsp;</td>

<td width="30px" height="30px" id="7__21">&nbsp;</td><td width="30px" height="30px" id="7__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="8__1">&nbsp;</td><td width="30px" height="30px" id="8__2">&nbsp;</td>

<td width="30px" height="30px" id="8__3">&nbsp;</td><td width="30px" height="30px" id="8__4">&nbsp;</td>

<td width="30px" height="30px" id="8__5">&nbsp;</td><td width="30px" height="30px" id="8__6">&nbsp;</td>

<td width="30px" height="30px" id="8__7">&nbsp;</td><td width="30px" height="30px" id="8__8">&nbsp;</td>

<td width="30px" height="30px" id="8__9">&nbsp;</td><td width="30px" height="30px" id="8__10">&nbsp;</td>

<td width="30px" height="30px" id="8__11">&nbsp;</td><td width="30px" height="30px" id="8__12">&nbsp;</td>

<td width="30px" height="30px" id="8__13">&nbsp;</td><td width="30px" height="30px" id="8__14">&nbsp;</td>

<td width="30px" height="30px" id="8__15">&nbsp;</td><td width="30px" height="30px" id="8__16">&nbsp;</td>

<td width="30px" height="30px" id="8__17">&nbsp;</td><td width="30px" height="30px" id="8__18">&nbsp;</td>

<td width="30px" height="30px" id="8__19">&nbsp;</td><td width="30px" height="30px" id="8__20">&nbsp;</td>

<td width="30px" height="30px" id="8__21">&nbsp;</td><td width="30px" height="30px" id="8__22">&nbsp;</td>

</tr>

<tr >

<td width="30px" height="30px" id="9__1">&nbsp;</td><td width="30px" height="30px" id="9__2">&nbsp;</td>

<td width="30px" height="30px" id="9__3">&nbsp;</td><td width="30px" height="30px" id="9__4">&nbsp;</td>

<td width="30px" height="30px" id="9__5">&nbsp;</td><td width="30px" height="30px" id="9__6">&nbsp;</td>

<td width="30px" height="30px" id="9__7">&nbsp;</td><td width="30px" height="30px" id="9__8">&nbsp;</td>

<td width="30px" height="30px" id="9__9">&nbsp;</td><td width="30px" height="30px" id="9__10">&nbsp;</td>

<td width="30px" height="30px" id="9__11">&nbsp;</td><td width="30px" height="30px" id="9__12">&nbsp;</td>

<td width="30px" height="30px" id="9__13">&nbsp;</td><td width="30px" height="30px" id="9__14">&nbsp;</td>

<td width="30px" height="30px" id="9__15">&nbsp;</td><td width="30px" height="30px" id="9__16">&nbsp;</td>

<td width="30px" height="30px" id="9__17">&nbsp;</td><td width="30px" height="30px" id="9__18">&nbsp;</td>

<td width="30px" height="30px" id="9__19">&nbsp;</td><td width="30px" height="30px" id="9__20">&nbsp;</td>

<td width="30px" height="30px" id="9__21">&nbsp;</td><td width="30px" height="30px" id="9__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="10__1">&nbsp;</td><td width="30px" height="30px" id="10__2">&nbsp;</td>

<td width="30px" height="30px" id="10__3">&nbsp;</td><td width="30px" height="30px" id="10__4">&nbsp;</td>

<td width="30px" height="30px" id="10__5">&nbsp;</td><td width="30px" height="30px" id="10__6">&nbsp;</td>

<td width="30px" height="30px" id="10__7">&nbsp;</td><td width="30px" height="30px" id="10__8">&nbsp;</td>

<td width="30px" height="30px" id="10__9">&nbsp;</td><td width="30px" height="30px" id="10__10">&nbsp;</td>

<td width="30px" height="30px" id="10__11">&nbsp;</td><td width="30px" height="30px" id="10__12">&nbsp;</td>

<td width="30px" height="30px" id="10__13">&nbsp;</td><td width="30px" height="30px" id="10__14">&nbsp;</td>

<td width="30px" height="30px" id="10__15">&nbsp;</td><td width="30px" height="30px" id="10__16">&nbsp;</td>

<td width="30px" height="30px" id="10__17">&nbsp;</td><td width="30px" height="30px" id="10__18">&nbsp;</td>

<td width="30px" height="30px" id="10__19">&nbsp;</td><td width="30px" height="30px" id="10__20">&nbsp;</td>

<td width="30px" height="30px" id="10__21">&nbsp;</td><td width="30px" height="30px" id="10__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="11__1">&nbsp;</td><td width="30px" height="30px" id="11__2">&nbsp;</td>

<td width="30px" height="30px" id="11__3">&nbsp;</td><td width="30px" height="30px" id="11__4">&nbsp;</td>

<td width="30px" height="30px" id="11__5">&nbsp;</td><td width="30px" height="30px" id="11__6">&nbsp;</td>

<td width="30px" height="30px" id="11__7">&nbsp;</td><td width="30px" height="30px" id="11__8">&nbsp;</td>

<td width="30px" height="30px" id="11__9">&nbsp;</td><td width="30px" height="30px" id="11__10">&nbsp;</td>

<td width="30px" height="30px" id="11__11">&nbsp;</td><td width="30px" height="30px" id="11__12">&nbsp;</td>

<td width="30px" height="30px" id="11__13">&nbsp;</td><td width="30px" height="30px" id="11__14">&nbsp;</td>

<td width="30px" height="30px" id="11__15">&nbsp;</td><td width="30px" height="30px" id="11__16">&nbsp;</td>

<td width="30px" height="30px" id="11__17">&nbsp;</td><td width="30px" height="30px" id="11__18">&nbsp;</td>

<td width="30px" height="30px" id="11__19">&nbsp;</td><td width="30px" height="30px" id="11__20">&nbsp;</td>

<td width="30px" height="30px" id="11__21">&nbsp;</td><td width="30px" height="30px" id="11__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="12__1">&nbsp;</td><td width="30px" height="30px" id="12__2">&nbsp;</td>

<td width="30px" height="30px" id="12__3">&nbsp;</td><td width="30px" height="30px" id="12__4">&nbsp;</td>

<td width="30px" height="30px" id="12__5">&nbsp;</td><td width="30px" height="30px" id="12__6">&nbsp;</td>

<td width="30px" height="30px" id="12__7">&nbsp;</td><td width="30px" height="30px" id="12__8">&nbsp;</td>

<td width="30px" height="30px" id="12__9">&nbsp;</td><td width="30px" height="30px" id="12__10">&nbsp;</td>

<td width="30px" height="30px" id="12__11">&nbsp;</td><td width="30px" height="30px" id="12__12">&nbsp;</td>

<td width="30px" height="30px" id="12__13">&nbsp;</td><td width="30px" height="30px" id="12__14">&nbsp;</td>

<td width="30px" height="30px" id="12__15">&nbsp;</td><td width="30px" height="30px" id="12__16">&nbsp;</td>

<td width="30px" height="30px" id="12__17">&nbsp;</td><td width="30px" height="30px" id="12__18">&nbsp;</td>

<td width="30px" height="30px" id="12__19">&nbsp;</td><td width="30px" height="30px" id="12__20">&nbsp;</td>

<td width="30px" height="30px" id="12__21">&nbsp;</td><td width="30px" height="30px" id="12__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="13__1">&nbsp;</td><td width="30px" height="30px" id="13__2">&nbsp;</td>

<td width="30px" height="30px" id="13__3">&nbsp;</td><td width="30px" height="30px" id="13__4">&nbsp;</td>

<td width="30px" height="30px" id="13__5">&nbsp;</td><td width="30px" height="30px" id="13__6">&nbsp;</td>

<td width="30px" height="30px" id="13__7">&nbsp;</td><td width="30px" height="30px" id="13__8">&nbsp;</td>

<td width="30px" height="30px" id="13__9">&nbsp;</td><td width="30px" height="30px" id="13__10">&nbsp;</td>

<td width="30px" height="30px" id="13__11">&nbsp;</td><td width="30px" height="30px" id="13__12">&nbsp;</td>

<td width="30px" height="30px" id="13__13">&nbsp;</td><td width="30px" height="30px" id="13__14">&nbsp;</td>

<td width="30px" height="30px" id="13__15">&nbsp;</td><td width="30px" height="30px" id="13__16">&nbsp;</td>

<td width="30px" height="30px" id="13__17">&nbsp;</td><td width="30px" height="30px" id="13__18">&nbsp;</td>

<td width="30px" height="30px" id="13__19">&nbsp;</td><td width="30px" height="30px" id="13__20">&nbsp;</td>

<td width="30px" height="30px" id="13__21">&nbsp;</td><td width="30px" height="30px" id="13__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px"id="14__1">&nbsp;</td><td width="30px"  height="30px" id="14__2">&nbsp;</td>

<td width="30px" height="30px"  id="14__3">&nbsp;</td><td width="30px"  height="30px" id="14__4">&nbsp;</td>

<td width="30px" height="30px" id="14__5">&nbsp;</td><td width="30px"  height="30px" id="14__6">&nbsp;</td>

<td width="30px" height="30px"  id="14__7">&nbsp;</td><td width="30px"  height="30px" id="14__8">&nbsp;</td>

<td width="30px" height="30px"  id="14__9">&nbsp;</td><td width="30px"  height="30px" id="14__10">&nbsp;</td>

<td width="30px" height="30px" id="14__11">&nbsp;</td><td width="30px"  height="30px" id="14__12">&nbsp;</td>

<td width="30px" height="30px"  id="14__13">&nbsp;</td><td width="30px"  height="30px" id="14__14">&nbsp;</td>

<td width="30px" height="30px"  id="14__15">&nbsp;</td><td width="30px"  height="30px" id="14__16">&nbsp;</td>

<td width="30px" height="30px"  id="14__17">&nbsp;</td><td width="30px"  height="30px" id="14__18">&nbsp;</td>

<td width="30px" height="30px"  id="14__19">&nbsp;</td><td width="30px"  height="30px" id="14__20">&nbsp;</td>

<td width="30px" height="30px"  id="14__21">&nbsp;</td><td width="30px"  height="30px" id="14__22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="15__1">&nbsp;</td><td width="30px" height="30px" id="15__2">&nbsp;</td>

<td width="30px" height="30px" id="15__3">&nbsp;</td><td width="30px" height="30px" id="15__4">&nbsp;</td>

<td width="30px" height="30px" id="15__5">&nbsp;</td><td width="30px" height="30px" id="15__6">&nbsp;</td>

<td width="30px" height="30px" id="15__7">&nbsp;</td><td width="30px" height="30px" id="15__8">&nbsp;</td>

<td width="30px" height="30px" id="15__9">&nbsp;</td><td width="30px" height="30px" id="15__10">&nbsp;</td>

<td width="30px" height="30px" id="15__11">&nbsp;</td><td width="30px" height="30px" id="15__12">&nbsp;</td>

<td width="30px" height="30px" id="15__13">&nbsp;</td><td width="30px" height="30px" id="15__14">&nbsp;</td>

<td width="30px" height="30px" id="15__15">&nbsp;</td><td width="30px" height="30px" id="15__16">&nbsp;</td>

<td width="30px" height="30px" id="15__17">&nbsp;</td><td width="30px" height="30px" id="15__18">&nbsp;</td>

<td width="30px" height="30px" id="15__19">&nbsp;</td><td width="30px" height="30px" id="15__20">&nbsp;</td>

<td width="30px" height="30px" id="15__21">&nbsp;</td><td width="30px" height="30px" id="15__22">&nbsp;</td>

</tr>

</table>

<table border="1" bordercolor="#000000" bgcolor="#ffff00">

<tr>

<td width="30px" height="30px" id="1_1">&nbsp;</td><td width="30px" height="30px" id="1_2">&nbsp;</td>

<td width="30px" height="30px" id="1_3">&nbsp;</td><td width="30px" height="30px" id="1_4">&nbsp;</td>

<td width="30px" height="30px" id="1_5">&nbsp;</td><td width="30px" height="30px" id="1_6">&nbsp;</td>

<td width="30px" height="30px" id="1_7">&nbsp;</td><td width="30px" height="30px" id="1_8">&nbsp;</td>

<td width="30px" height="30px" id="1_9">&nbsp;</td><td width="30px" height="30px" id="1_10">&nbsp;</td>

<td width="30px" height="30px" id="1_11">&nbsp;</td><td width="30px" height="30px" id="1_12">&nbsp;</td>

<td width="30px" height="30px" id="1_13">&nbsp;</td><td width="30px" height="30px" id="1_14">&nbsp;</td>

<td width="30px" height="30px" id="1_15">&nbsp;</td><td width="30px" height="30px" id="1_16">&nbsp;</td>

<td width="30px" height="30px" id="1_17">&nbsp;</td><td width="30px" height="30px" id="1_18">&nbsp;</td>

<td width="30px" height="30px" id="1_19">&nbsp;</td><td width="30px" height="30px" id="1_20">&nbsp;</td>

<td width="30px" height="30px" id="1_21">&nbsp;</td><td width="30px" height="30px" id="1_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="2_1">&nbsp;</td><td width="30px" height="30px" id="2_2">&nbsp;</td>

<td width="30px" height="30px" id="2_3">&nbsp;</td><td width="30px" height="30px" id="2_4">&nbsp;</td>

<td width="30px" height="30px" id="2_5">&nbsp;</td><td width="30px" height="30px" id="2_6">&nbsp;</td>

<td width="30px" height="30px" id="2_7">&nbsp;</td><td width="30px" height="30px" id="2_8">&nbsp;</td>

<td width="30px" height="30px" id="2_9">&nbsp;</td><td width="30px" height="30px" id="2_10">&nbsp;</td>

<td width="30px" height="30px" id="2_11">&nbsp;</td><td width="30px" height="30px" id="2_12">&nbsp;</td>

<td width="30px" height="30px" id="2_13">&nbsp;</td><td width="30px" height="30px" id="2_14">&nbsp;</td>

<td width="30px" height="30px" id="2_15">&nbsp;</td><td width="30px" height="30px" id="2_16">&nbsp;</td>

<td width="30px" height="30px" id="2_17">&nbsp;</td><td width="30px" height="30px" id="2_18">&nbsp;</td>

<td width="30px" height="30px" id="2_19">&nbsp;</td><td width="30px" height="30px" id="2_20">&nbsp;</td>

<td width="30px" height="30px" id="2_21">&nbsp;</td><td width="30px" height="30px" id="2_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="3_1">&nbsp;</td><td width="30px" height="30px" id="3_2">&nbsp;</td>

<td width="30px" height="30px" id="3_3">&nbsp;</td><td width="30px" height="30px" id="3_4">&nbsp;</td>

<td width="30px" height="30px" id="3_5">&nbsp;</td><td width="30px" height="30px" id="3_6">&nbsp;</td>

<td width="30px" height="30px" id="3_7">&nbsp;</td><td width="30px" height="30px" id="3_8">&nbsp;</td>

<td width="30px" height="30px" id="3_9">&nbsp;</td><td width="30px" height="30px" id="3_10">&nbsp;</td>

<td width="30px" height="30px" id="3_11">&nbsp;</td><td width="30px" height="30px" id="3_12">&nbsp;</td>

<td width="30px" height="30px" id="3_13">&nbsp;</td><td width="30px" height="30px" id="3_14">&nbsp;</td>

<td width="30px" height="30px" id="3_15">&nbsp;</td><td width="30px" height="30px" id="3_16">&nbsp;</td>

<td width="30px" height="30px" id="3_17">&nbsp;</td><td width="30px" height="30px" id="3_18">&nbsp;</td>

<td width="30px" height="30px" id="3_19">&nbsp;</td><td width="30px" height="30px" id="3_20">&nbsp;</td>

<td width="30px" height="30px" id="3_21">&nbsp;</td><td width="30px" height="30px" id="3_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="4_1">&nbsp;</td><td width="30px" height="30px" id="4_2">&nbsp;</td>

<td width="30px" height="30px" id="4_3">&nbsp;</td><td width="30px" height="30px" id="4_4">&nbsp;</td>

<td width="30px" height="30px" id="4_5">&nbsp;</td><td width="30px" height="30px" id="4_6">&nbsp;</td>

<td width="30px" height="30px" id="4_7">&nbsp;</td><td width="30px" height="30px" id="4_8">&nbsp;</td>

<td width="30px" height="30px" id="4_9">&nbsp;</td><td width="30px" height="30px" id="4_10">&nbsp;</td>

<td width="30px" height="30px" id="4_11">&nbsp;</td><td width="30px" height="30px" id="4_12">&nbsp;</td>

<td width="30px" height="30px" id="4_13">&nbsp;</td><td width="30px" height="30px" id="4_14">&nbsp;</td>

<td width="30px" height="30px" id="4_15">&nbsp;</td><td width="30px" height="30px" id="4_16">&nbsp;</td>

<td width="30px" height="30px" id="4_17">&nbsp;</td><td width="30px" height="30px" id="4_18">&nbsp;</td>

<td width="30px" height="30px" id="4_19">&nbsp;</td><td width="30px" height="30px" id="4_20">&nbsp;</td>

<td width="30px" height="30px" id="4_21">&nbsp;</td><td width="30px" height="30px" id="4_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="5_1">&nbsp;</td><td width="30px" height="30px" id="5_2">&nbsp;</td>

<td width="30px" height="30px" id="5_3">&nbsp;</td><td width="30px" height="30px" id="5_4">&nbsp;</td>

<td width="30px" height="30px" id="5_5">&nbsp;</td><td width="30px" height="30px" id="5_6">&nbsp;</td>

<td width="30px" height="30px" id="5_7">&nbsp;</td><td width="30px" height="30px" id="5_8">&nbsp;</td>

<td width="30px" height="30px" id="5_9">&nbsp;</td><td width="30px" height="30px" id="5_10">&nbsp;</td>

<td width="30px" height="30px" id="5_11">&nbsp;</td><td width="30px" height="30px" id="5_12">&nbsp;</td>

<td width="30px" height="30px" id="5_13">&nbsp;</td><td width="30px" height="30px" id="5_14">&nbsp;</td>

<td width="30px" height="30px" id="5_15">&nbsp;</td><td width="30px" height="30px" id="5_16">&nbsp;</td>

<td width="30px" height="30px" id="5_17">&nbsp;</td><td width="30px" height="30px" id="5_18">&nbsp;</td>

<td width="30px" height="30px" id="5_19">&nbsp;</td><td width="30px" height="30px" id="5_20">&nbsp;</td>

<td width="30px" height="30px" id="5_21">&nbsp;</td><td width="30px" height="30px" id="5_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="6_1">&nbsp;</td><td width="30px" height="30px" id="6_2">&nbsp;</td>

<td width="30px" height="30px" id="6_3">&nbsp;</td><td width="30px" height="30px" id="6_4">&nbsp;</td>

<td width="30px" height="30px" id="6_5">&nbsp;</td><td width="30px" height="30px" id="6_6">&nbsp;</td>

<td width="30px" height="30px" id="6_7">&nbsp;</td><td width="30px" height="30px" id="6_8">&nbsp;</td>

<td width="30px" height="30px" id="6_9">&nbsp;</td><td width="30px" height="30px" id="6_10">&nbsp;</td>

<td width="30px" height="30px" id="6_11">&nbsp;</td><td width="30px" height="30px" id="6_12">&nbsp;</td>

<td width="30px" height="30px" id="6_13">&nbsp;</td><td width="30px" height="30px" id="6_14">&nbsp;</td>

<td width="30px" height="30px" id="6_15">&nbsp;</td><td width="30px" height="30px" id="6_16">&nbsp;</td>

<td width="30px" height="30px" id="6_17">&nbsp;</td><td width="30px" height="30px" id="6_18">&nbsp;</td>

<td width="30px" height="30px" id="6_19">&nbsp;</td><td width="30px" height="30px" id="6_20">&nbsp;</td>

<td width="30px" height="30px" id="6_21">&nbsp;</td><td width="30px" height="30px" id="6_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="7_1">&nbsp;</td><td width="30px" height="30px" id="7_2">&nbsp;</td>

<td width="30px" height="30px" id="7_3">&nbsp;</td><td width="30px" height="30px" id="7_4">&nbsp;</td>

<td width="30px" height="30px" id="7_5">&nbsp;</td><td width="30px" height="30px" id="7_6">&nbsp;</td>

<td width="30px" height="30px" id="7_7">&nbsp;</td><td width="30px" height="30px" id="7_8">&nbsp;</td>

<td width="30px" height="30px" id="7_9">&nbsp;</td><td width="30px" height="30px" id="7_10">&nbsp;</td>

<td width="30px" height="30px" id="7_11">&nbsp;</td><td width="30px" height="30px" id="7_12">&nbsp;</td>

<td width="30px" height="30px" id="7_13">&nbsp;</td><td width="30px" height="30px" id="7_14">&nbsp;</td>

<td width="30px" height="30px" id="7_15">&nbsp;</td><td width="30px" height="30px" id="7_16">&nbsp;</td>

<td width="30px" height="30px" id="7_17">&nbsp;</td><td width="30px" height="30px" id="7_18">&nbsp;</td>

<td width="30px" height="30px" id="7_19">&nbsp;</td><td width="30px" height="30px" id="7_20">&nbsp;</td>

<td width="30px" height="30px" id="7_21">&nbsp;</td><td width="30px" height="30px" id="7_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="8_1">&nbsp;</td><td width="30px" height="30px" id="8_2">&nbsp;</td>

<td width="30px" height="30px" id="8_3">&nbsp;</td><td width="30px" height="30px" id="8_4">&nbsp;</td>

<td width="30px" height="30px" id="8_5">&nbsp;</td><td width="30px" height="30px" id="8_6">&nbsp;</td>

<td width="30px" height="30px" id="8_7">&nbsp;</td><td width="30px" height="30px" id="8_8">&nbsp;</td>

<td width="30px" height="30px" id="8_9">&nbsp;</td><td width="30px" height="30px" id="8_10">&nbsp;</td>

<td width="30px" height="30px" id="8_11">&nbsp;</td><td width="30px" height="30px" id="8_12">&nbsp;</td>

<td width="30px" height="30px" id="8_13">&nbsp;</td><td width="30px" height="30px" id="8_14">&nbsp;</td>

<td width="30px" height="30px" id="8_15">&nbsp;</td><td width="30px" height="30px" id="8_16">&nbsp;</td>

<td width="30px" height="30px" id="8_17">&nbsp;</td><td width="30px" height="30px" id="8_18">&nbsp;</td>

<td width="30px" height="30px" id="8_19">&nbsp;</td><td width="30px" height="30px" id="8_20">&nbsp;</td>

<td width="30px" height="30px" id="8_21">&nbsp;</td><td width="30px" height="30px" id="8_22">&nbsp;</td>

</tr>

<tr >

<td width="30px" height="30px" id="9_1">&nbsp;</td><td width="30px" height="30px" id="9_2">&nbsp;</td>

<td width="30px" height="30px" id="9_3">&nbsp;</td><td width="30px" height="30px" id="9_4">&nbsp;</td>

<td width="30px" height="30px" id="9_5">&nbsp;</td><td width="30px" height="30px" id="9_6">&nbsp;</td>

<td width="30px" height="30px" id="9_7">&nbsp;</td><td width="30px" height="30px" id="9_8">&nbsp;</td>

<td width="30px" height="30px" id="9_9">&nbsp;</td><td width="30px" height="30px" id="9_10">&nbsp;</td>

<td width="30px" height="30px" id="9_11">&nbsp;</td><td width="30px" height="30px" id="9_12">&nbsp;</td>

<td width="30px" height="30px" id="9_13">&nbsp;</td><td width="30px" height="30px" id="9_14">&nbsp;</td>

<td width="30px" height="30px" id="9_15">&nbsp;</td><td width="30px" height="30px" id="9_16">&nbsp;</td>

<td width="30px" height="30px" id="9_17">&nbsp;</td><td width="30px" height="30px" id="9_18">&nbsp;</td>

<td width="30px" height="30px" id="9_19">&nbsp;</td><td width="30px" height="30px" id="9_20">&nbsp;</td>

<td width="30px" height="30px" id="9_21">&nbsp;</td><td width="30px" height="30px" id="9_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="10_1">&nbsp;</td><td width="30px" height="30px" id="10_2">&nbsp;</td>

<td width="30px" height="30px" id="10_3">&nbsp;</td><td width="30px" height="30px" id="10_4">&nbsp;</td>

<td width="30px" height="30px" id="10_5">&nbsp;</td><td width="30px" height="30px" id="10_6">&nbsp;</td>

<td width="30px" height="30px" id="10_7">&nbsp;</td><td width="30px" height="30px" id="10_8">&nbsp;</td>

<td width="30px" height="30px" id="10_9">&nbsp;</td><td width="30px" height="30px" id="10_10">&nbsp;</td>

<td width="30px" height="30px" id="10_11">&nbsp;</td><td width="30px" height="30px" id="10_12">&nbsp;</td>

<td width="30px" height="30px" id="10_13">&nbsp;</td><td width="30px" height="30px" id="10_14">&nbsp;</td>

<td width="30px" height="30px" id="10_15">&nbsp;</td><td width="30px" height="30px" id="10_16">&nbsp;</td>

<td width="30px" height="30px" id="10_17">&nbsp;</td><td width="30px" height="30px" id="10_18">&nbsp;</td>

<td width="30px" height="30px" id="10_19">&nbsp;</td><td width="30px" height="30px" id="10_20">&nbsp;</td>

<td width="30px" height="30px" id="10_21">&nbsp;</td><td width="30px" height="30px" id="10_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="11_1">&nbsp;</td><td width="30px" height="30px" id="11_2">&nbsp;</td>

<td width="30px" height="30px" id="11_3">&nbsp;</td><td width="30px" height="30px" id="11_4">&nbsp;</td>

<td width="30px" height="30px" id="11_5">&nbsp;</td><td width="30px" height="30px" id="11_6">&nbsp;</td>

<td width="30px" height="30px" id="11_7">&nbsp;</td><td width="30px" height="30px" id="11_8">&nbsp;</td>

<td width="30px" height="30px" id="11_9">&nbsp;</td><td width="30px" height="30px" id="11_10">&nbsp;</td>

<td width="30px" height="30px" id="11_11">&nbsp;</td><td width="30px" height="30px" id="11_12">&nbsp;</td>

<td width="30px" height="30px" id="11_13">&nbsp;</td><td width="30px" height="30px" id="11_14">&nbsp;</td>

<td width="30px" height="30px" id="11_15">&nbsp;</td><td width="30px" height="30px" id="11_16">&nbsp;</td>

<td width="30px" height="30px" id="11_17">&nbsp;</td><td width="30px" height="30px" id="11_18">&nbsp;</td>

<td width="30px" height="30px" id="11_19">&nbsp;</td><td width="30px" height="30px" id="11_20">&nbsp;</td>

<td width="30px" height="30px" id="11_21">&nbsp;</td><td width="30px" height="30px" id="11_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="12_1">&nbsp;</td><td width="30px" height="30px" id="12_2">&nbsp;</td>

<td width="30px" height="30px" id="12_3">&nbsp;</td><td width="30px" height="30px" id="12_4">&nbsp;</td>

<td width="30px" height="30px" id="12_5">&nbsp;</td><td width="30px" height="30px" id="12_6">&nbsp;</td>

<td width="30px" height="30px" id="12_7">&nbsp;</td><td width="30px" height="30px" id="12_8">&nbsp;</td>

<td width="30px" height="30px" id="12_9">&nbsp;</td><td width="30px" height="30px" id="12_10">&nbsp;</td>

<td width="30px" height="30px" id="12_11">&nbsp;</td><td width="30px" height="30px" id="12_12">&nbsp;</td>

<td width="30px" height="30px" id="12_13">&nbsp;</td><td width="30px" height="30px" id="12_14">&nbsp;</td>

<td width="30px" height="30px" id="12_15">&nbsp;</td><td width="30px" height="30px" id="12_16">&nbsp;</td>

<td width="30px" height="30px" id="12_17">&nbsp;</td><td width="30px" height="30px" id="12_18">&nbsp;</td>

<td width="30px" height="30px" id="12_19">&nbsp;</td><td width="30px" height="30px" id="12_20">&nbsp;</td>

<td width="30px" height="30px" id="12_21">&nbsp;</td><td width="30px" height="30px" id="12_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="13_1">&nbsp;</td><td width="30px" height="30px" id="13_2">&nbsp;</td>

<td width="30px" height="30px" id="13_3">&nbsp;</td><td width="30px" height="30px" id="13_4">&nbsp;</td>

<td width="30px" height="30px" id="13_5">&nbsp;</td><td width="30px" height="30px" id="13_6">&nbsp;</td>

<td width="30px" height="30px" id="13_7">&nbsp;</td><td width="30px" height="30px" id="13_8">&nbsp;</td>

<td width="30px" height="30px" id="13_9">&nbsp;</td><td width="30px" height="30px" id="13_10">&nbsp;</td>

<td width="30px" height="30px" id="13_11">&nbsp;</td><td width="30px" height="30px" id="13_12">&nbsp;</td>

<td width="30px" height="30px" id="13_13">&nbsp;</td><td width="30px" height="30px" id="13_14">&nbsp;</td>

<td width="30px" height="30px" id="13_15">&nbsp;</td><td width="30px" height="30px" id="13_16">&nbsp;</td>

<td width="30px" height="30px" id="13_17">&nbsp;</td><td width="30px" height="30px" id="13_18">&nbsp;</td>

<td width="30px" height="30px" id="13_19">&nbsp;</td><td width="30px" height="30px" id="13_20">&nbsp;</td>

<td width="30px" height="30px" id="13_21">&nbsp;</td><td width="30px" height="30px" id="13_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px"  id="14_1">&nbsp;</td><td width="30px" height="30px"  id="14_2">&nbsp;</td>

<td width="30px" height="30px"  id="14_3">&nbsp;</td><td width="30px" height="30px"  id="14_4">&nbsp;</td>

<td width="30px" height="30px"  id="14_5">&nbsp;</td><td width="30px" height="30px"  id="14_6">&nbsp;</td>

<td width="30px" height="30px"  id="14_7">&nbsp;</td><td width="30px" height="30px"  id="14_8">&nbsp;</td>

<td width="30px" height="30px"  id="14_9">&nbsp;</td><td width="30px" height="30px"  id="14_10">&nbsp;</td>

<td width="30px" height="30px"  id="14_11">&nbsp;</td><td width="30px" height="30px"  id="14_12">&nbsp;</td>

<td width="30px" height="30px"  id="14_13">&nbsp;</td><td width="30px" height="30px"  id="14_14">&nbsp;</td>

<td width="30px" height="30px"  id="14_15">&nbsp;</td><td width="30px"  height="30px" id="14_16">&nbsp;</td>

<td width="30px" height="30px"  id="14_17">&nbsp;</td><td width="30px" height="30px"  id="14_18">&nbsp;</td>

<td width="30px" height="30px"  id="14_19">&nbsp;</td><td width="30px" height="30px"  id="14_20">&nbsp;</td>

<td width="30px" height="30px"  id="14_21">&nbsp;</td><td width="30px" height="30px"   id="14_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="15_1">&nbsp;</td><td width="30px" height="30px" id="15_2">&nbsp;</td>

<td width="30px" height="30px" id="15_3">&nbsp;</td><td width="30px" height="30px" id="15_4">&nbsp;</td>

<td width="30px" height="30px" id="15_5">&nbsp;</td><td width="30px" height="30px" id="15_6">&nbsp;</td>

<td width="30px" height="30px" id="15_7">&nbsp;</td><td width="30px" height="30px" id="15_8">&nbsp;</td>

<td width="30px" height="30px" id="15_9">&nbsp;</td><td width="30px" height="30px" id="15_10">&nbsp;</td>

<td width="30px" height="30px" id="15_11">&nbsp;</td><td width="30px" height="30px" id="15_12">&nbsp;</td>

<td width="30px" height="30px" id="15_13">&nbsp;</td><td width="30px" height="30px" id="15_14">&nbsp;</td>

<td width="30px" height="30px" id="15_15">&nbsp;</td><td width="30px" height="30px" id="15_16">&nbsp;</td>

<td width="30px" height="30px" id="15_17">&nbsp;</td><td width="30px" height="30px" id="15_18">&nbsp;</td>

<td width="30px" height="30px" id="15_19">&nbsp;</td><td width="30px" height="30px" id="15_20">&nbsp;</td>

<td width="30px" height="30px" id="15_21">&nbsp;</td><td width="30px" height="30px" id="15_22">&nbsp;</td>

</tr>

<tr>

<td width="30px" height="30px" id="1">&nbsp;</td><td width="30px" height="30px" id="2" >&nbsp;</td>

<td width="30px" height="30px" id="3">&nbsp;</td><td width="30px" height="30px" id="4" >&nbsp;</td>

<td width="30px" height="30px" id="5" >&nbsp;</td><td width="30px" height="30px" id="6" >&nbsp;</td>

<td width="30px" height="30px" id="7" >&nbsp;</td><td width="30px" height="30px" id="8" >&nbsp;</td>

<td width="30px" height="30px" id="9" >&nbsp;</td><td width="30px" height="30px" id="10" >&nbsp;</td>

<td width="30px" height="30px" id="11" style="background-color: red">&nbsp;</td><td width="30px" height="30px" id="12" >&nbsp;</td>

<td width="30px" height="30px" id="13" >&nbsp;</td><td width="30px" height="30px" id="14" >&nbsp;</td>

<td width="30px" height="30px" id="15" >&nbsp;</td><td width="30px" height="30px" id="16" >&nbsp;</td>

<td width="30px" height="30px" id="17" >&nbsp;</td><td width="30px" height="30px" id="18" >&nbsp;</td>

<td width="30px" height="30px" id="19" >&nbsp;</td><td width="30px" height="30px" id="20" >&nbsp;</td>

<td width="30px" height="30px" id="21" >&nbsp;</td><td width="30px" height="30px" id="22" >&nbsp;</td>

</tr>

</table>

得分:<input type="text" id="core" style="width:100px" disabled="disabled" value="0"/>

<input type="button" value="重新部署"/><input type="button" onclick="window.location.reload()" value="重新开始"/><input type="button" value="开始"/><input type="button" value="结束"/>

第<span id="guan">1</span>关&nbsp;&nbsp;法宝:<span id="fa">0</span>次

</center>

</body>

</html>


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI