js程式設計 貪吃蛇遊戲07

2021-08-29 18:26:43 字數 1150 閱讀 9873

注意,都是建立在前面幾個步驟至上開發的。

index.html

開始暫停

snake.js

$(document).ready(function()

});var timer=null;

$("#start").click(function(), 300);

});$("#pause").click(function());

});//地圖

var mapdiv=function());

div.attr("id","map_div");

};//蛇

var snake=function(),,];

this.show=function());

});};

//吃食物

this.eat=function(food));

};//移動

this.run=function()

//            alert(code);

//判斷方向

switch(this.code)

//判斷是否碰壁

if(this.body[0].x<0||this.body[0].x>15||this.body[0].y<0||this.body[0].y>9),,];

}//判斷是否碰到蛇身

for(var i=1;i

");        

this.x=0;

this.y=0;

this.c=randomrgbacolor();

//食物被吃    

this.eated=function(snake)else}}

div.css(

);};

//顯示食物

this.show=function());

};};

//隨機生成顏色    

function randomrgbacolor() ,$,$)`; //返回rgba(r,g,b,a)格式顏色,$

//$("#map_div").text(r);

}

貪吃蛇遊戲

貪吃蛇遊戲 結構化程式設計 c語言程式設計 重要的的是結構化的程式設計思想 include include include include include include define field width 300 就做20個格仔的 define field height 300 define f...

貪吃蛇遊戲

include include include include include 使用當前時間做種子 enum dir 列舉型別enum dir 圍牆 class fencef 定義物件 畫框框 void fence initfence 顯示框框 void fence outputf int snak...

貪吃蛇遊戲

閒暇之餘,學習前輩經驗,再利用執行緒和窗體自己做了個貪吃蛇小遊戲。遊戲帶有加速功能,能顯示遊戲分數。借鑑的朋友們後期還可以在此基礎上增加其他功能。下面給大家顯示遊戲 以及詳細註解 一 bean類 蛇和食物的構造基礎,author deng public class node public node ...