经典的window小游戏扫雷,无聊时候用JS写了一个,支持IE9,chrome,firefox,safari,opera等现代浏览器!~IE8以下没测试~
游戏地址:/wp-content/uploads/2012/09/minesweeping.htmlmoreJS扫雷var$=function(id){returndocument.getElementById(id)};varminesweeper={};//雷区对象varmineArray=[];//地雷组var_differendNumber=null;//生成不同位置的随机地雷varovercomeMineLenth={overcome:0,minelength:10};functionCreateBox(y,x,mine){//构造雷格对象this.position=1;//1在雷区里面,0不在this.y=y;this.x=x;this.mine=mine;//1有雷,0无this.on=0;//0未扫,1已扫,2已标记this.t_l={y:y-1,x:x-1};//左上格子坐标this.t_c={y:y-1,x:x};//上this.t_r={y:y-1,x:x+1};//右上this.b_l={y:y+1,x:x-1};//左下this.b_c={y:y+1,x:x};//下this.b_r={y:y+1,x:
...
继续阅读
(36)