涂格子游戏html,网页版方格贪吃蛇游戏html源码分享

format,png

html源码,要做网页的话复制源码新建一个文本文档粘贴进去,然后文本文档改名snake.html即可。

体验地址:点击进入

玩法:用键盘的上下左右控制。

贪吃蛇-陌涛博客www.imotao.com

.backDiv {

text-align: center;

position:absolute;

top:20px;

left:300px;

width:820px;

height:550px;

}

.display {

position:absolute;

top:0px;

left:685px;

width:180px;

height:510px;

border: 5px solid black;

background-color: #ccffff;

}

#gamePanel table {

border-collapse: collapse;/*合并单元格边框*/

border: 5px solid black;

background-color: #f0f0f0;

}

#gamePanel td {

width:15px;

height:15px;

}

#scoreDiv {

position: absolute;

top: 20px;

left:20px;

text-align: left;

font-size: 20px;

font-weight: bold;

}

#prompt {

position: absolute;

top: 180px;

left: 20px;

text-align: left;

font-weight: bold;

}

#operator {

position: absolute;

top:550px;

left:100px;

}

#result {

position: absolute;

top:200px;

left:220px;

background-color: #00ffff;

font-size: 20px;

font-weight: bold;

text-align: left;

padding: 20px;

}

var snake = [];// 蛇数组

var barrers = [];// 障碍物数组

var game = {sizeX:"30",sizeY:"40",record:"0"};

var appearTime = disappearTime = 0;// 超级食物出现

var superFoodX = superFoodY = null;

var color = 0;// 食物颜色

function init(){

clearTimeout(game.time);

snake = [];

barrers = [];

game.x = 0;game.y = 1;

game.dir = null;

game.direction = "right";

game.rate = null;

game.lengths = 2;// 蛇的长度

game.score = 0;

$("scoreDiv").innerHTML = "得分:"+game.score+"
长度:"+ game.lengths+"
"+"最高分:"+game.record;

$("pass").disabled = false;

$("rate").disabled = false;

$("start").disabled = false;

bord();// 设置界面

barrer();// 设置障碍物

$("result").style.visibility = "hidden";

snake.push("tb_" + game.x + "_" + (game.y-1));

snake.push("tb_" + game.x + "_" + game.y);// 蛇头

}

function $(id){

return document.getElementById(id);

}

// 表格

function bord(){

var panel = [];// 游戏面板

var proPanel = [];// 提示面板

panel.push("

for(var i=0; i

panel.push("

");

for(var j=0; j

panel.push('

');

}

panel.push("

");

}

panel.push("

");

$("gamePanel").innerHTML = panel.join("");

proPanel.push("

proPanel.push('

'+'' + ' 得分+10'+'');

proPanel.push('

'+'' + ' 得分+30'+'');

proPanel.push('

'+'' + ' 得分+50'+'');

proPanel.push('

'+'' + ' 得分+100'+'');

proPanel.push('

'+'' + ' 得分-30'+'');

proPanel.push('

'+'' + ' 得分-50');

proPanel.push("

");

$("prompt").innerHTML = proPanel.join("");

}

// 关卡障碍物设置

function barrer() {

var passValue = $("pass").value;

for(var i=0; i

$(barrers[i]).style.backgroundColor = "";

}

barrers = [];

if(passValue == 2) {

for(var i=8; i

barrers.push("tb_" + i + "_" + 10);

barrers.push("tb_" + i + "_" + (game.sizeY-10));

}

}

if(passValue == 3) {

for(var i=8; i

barrers.push("tb_" + Math.floor(game.sizeX/2) + "_" + i);

}

for(var i=6; i

barrers.push("tb_" + i + "_" + Math.floor(game.sizeY/2));

}

}

if(passValue == 4) {

for(var i=12; i

barrers.push("tb_" + Math.floor(game.sizeX/2) + "_" + i);

}

for(var j=6; j

barrers.push("tb_" + j + "_" + Math.floor(game.sizeY/2+1));

}

for(var i=6; i

if(i < game.sizeX/2) {barrers.push("tb_"+i+"_"+12);}

else{barrers.push("tb_"+i+"_"+(game.sizeY-11));}

}

for(var j=12; j

if(j <= game.sizeY/2) {barrers.push("tb_"+(game.sizeX-7)+"_"+j);}

else {barrers.push("tb_"+6+"_"+(j+1));}

}

}

if(passValue == 5) {

for(var i=0; i<14; i++) {

barrers.push("tb_" + 7 + "_" + i);

barrers.push("tb_" + (game.sizeX-8) + "_" + (game.sizeY-i-1));

}

for(var i=15; i<25; i++) {

if(i < 18 || i > 21){

barrers.push("tb_"+10 +"_"+i);

barrers.push("tb_"+(game.sizeX-11)+"_"+i);

}

}

for(var i=0; i<9; i++) {

barrers.push("tb_" + i + "_" + (game.sizeY-13));

barrers.push("tb_" + (game.sizeX-i-1) + "_" + 12);

}

for(var i=11; i<19; i++) {

if(i < 13 || i > 16){

barrers.push("tb_"+i+"_"+15);

barrers.push("tb_"+i+"_"+(game.sizeY-16));

}

}

}

// 设置障碍物颜色

for(var i=0; i

$(barrers[i]).style.backgroundColor = "#660033";

}

}

// 开始游戏

function startGame() {

food();

game.start = true;

$("pass").disabled = true;

$("rate").disabled = true;

$("start").disabled = true;

game.rate = $("rate").value;

$(snake[0]).style.backgroundColor = "#0066ff";

$(snake[1]).style.backgroundColor = "blue";

game.time = setTimeout(function(){

snakeMove();

},game.rate);

superFood();

}

// 蛇移动 速度,方向

function snakeMove() {

if(game.direction == "right") {game.y += 1; }// 右移

if(game.direction == "left") {game.y -= 1; }// 左移

if(game.direction == "up") {game.x -= 1; }// 上移

if(game.direction == "down") {game.x += 1; }// 下移

// 判断游戏是否结束

if(result() == true) {

clearTimeout(game.time); clearTimeout(appearTime); clearTimeout(disappearTime);

game.start = false;

var res = "游戏结束!
";

if(game.score > game.record){

res += "恭喜你破纪录啦!
";

$("scoreDiv").innerHTML = "得分:" + game.score + "
最高分:" + game.record;

}

res += "您的得分为:" + game.score + "
长度:"+game.lengths;

$("result").style.visibility = "visible";

$("result").innerHTML = res;

return;

}

if(game.x==game.fx && game.y==game.fy) {eat(1);}

if(game.x==superFoodX && game.y==superFoodY) {eat(2);}

move();

game.time = setTimeout(function() {

snakeMove(game.rate,game.direction);

},game.rate);

}

function move() {

$(snake[0]).style.backgroundColor = "";

// 保留蛇当前的位置

for(var i=1; i

snake[i-1] = snake[i];

}

snake[snake.length-1] = "tb_" + game.x + "_" + game.y;// 蛇头位置

for(var i=0; i

$(snake[i]).style.backgroundColor = "#0066ff";

}

$(snake[i]).style.backgroundColor = "blue";

}

// 食物 位置随机且不能与蛇位置重复

function food() {

game.fx = Math.floor(Math.random(game.sizeX)*game.sizeX);

game.fy = Math.floor(Math.random(game.sizeY)*game.sizeY);

if($("tb_" + game.fx + "_" + game.fy).style.backgroundColor != "") {food(); }

else {$("tb_" + game.fx + "_" + game.fy).style.backgroundColor = "#ff3300"; }

}

// 超级食物出现

function superFood() {

appearTime = setTimeout(function(){

var n = Math.floor(Math.random(10)*10);

superFoodX = Math.floor(Math.random(game.sizeX)*game.sizeX);

superFoodY = Math.floor(Math.random(game.sizeY)*game.sizeY);

if($("tb_" + superFoodX + "_" + superFoodY).style.backgroundColor != "") {superFood(); }

else{

if(("tb_" + superFoodX + "_" + superFoodY) == ("tb_" + game.fx + "_" + game.fy)){superFood(); return ;}

if(n < 3){$("tb_" + superFoodX + "_" + superFoodY).style.backgroundColor = "#33cc33"; color = 0;}

else if(3 <= n && n < 5){$("tb_" + superFoodX + "_" + superFoodY).style.backgroundColor = "#006600"; color = 1;}

else if(5 <= n && n < 7){$("tb_" + superFoodX + "_" + superFoodY).style.backgroundColor = "#99ff66"; color = 2;}

else if(7 <= n && n < 9){$("tb_" + superFoodX + "_" + superFoodY).style.backgroundColor = "#000000"; color = 3;}

else {$("tb_" + superFoodX + "_" + superFoodY).style.backgroundColor = "#ffff00"; color = 4;}

clearTimeout(disappearTime);

superFood();

// 一定时间后超级食物消失

disappearTime = setTimeout(function(){

$("tb_" + superFoodX + "_" + superFoodY).style.backgroundColor = "";

superFoodX = superFoodY = null;

},game.rate*120-game.rate*50);

}

},game.rate*120);

}

// 蛇吃食物

function eat(ef) {

// 吃普通食物

if(ef == 1) {snake.push("tb_" + game.fx + "_" + game.fy); game.score += 10; food();}

// 吃超级食物

if(ef == 2) {

if(color == 0) {game.score += 30;}

else if(color == 1) {game.score -= 30;}

else if(color == 2) {game.score += 50;}

else if(color == 3) {game.score -= 50;}

else {game.score += 100;}

snake.push("tb_" + superFoodX + "_" + superFoodY);

if(game.score < 0) {game.score = 0;}

clearTimeout(disappearTime);

}

game.lengths += 1;

$("scoreDiv").innerHTML = "得分:"+game.score+"
长度:"+game.lengths+"
最高分:"+game.record;

}

// 游戏结束

function result() {

var next = "tb_" + game.x + "_" + game.y;

if(game.x<0 || game.x>=game.sizeX || game.y<0 || game.y>=game.sizeY) {return true;}

for(var i=0; i

for(var i=0; i

return false;

}

// 键盘控制

function control(v) {

var evt = v;

game.dir = game.direction;

if(37 <= evt.keyCode && evt.keyCode <= 40 && game.start){

if(evt.keyCode == 37){game.dir=="right" ? game.direction = "right":game.direction = "left";}// 左

if(evt.keyCode == 38){game.dir=="down" ? game.direction = "down" : game.direction = "up";}// 上

if(evt.keyCode == 39){game.dir=="left" ? game.direction = "left" : game.direction = "right";}// 右

if(evt.keyCode == 40){game.dir=="up" ? game.direction = "up" : game.direction = "down";}// 下

if(game.dir != game.direction){clearTimeout(game.time); snakeMove(); }

}

}

分数:0

选择关卡:

关卡1

关卡2

关卡3

关卡4

关卡5

速度:

本文由 陌涛 发布在 陌涛的记事本,转载此文请保持文章完整性,并请附上文章来源(陌涛的记事本)及本页链接。

原文链接:https://imotao.com/869.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值