寒假无聊在家写的
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<script>
//1.定义地图类
var map;
var food;
var snake;
var length;
function Map(){
//属性 高度 宽度 颜色 位置
//方法 show()
this.width=800;
this.height=400;
this.color='#dddddd';
this.position='absolute';
this._map=null;
this.overflow="hidden";
this.show=function(){
this._map=document.createElement("div");
this._map.style.width=this.width+"px";
this._map.style.height=this.height+"px";
this._map.style.position=this.position;
this._map.style.overflow=this.overflow;
this._map.style.backgroundColor=this.color;
document.getElementsByTagName("body")[0].appendChild(this._map);
}
}
//2.定义食物类
function Food(){
this.width=20;
this.height=20;
this.color='green';
this.position='absolute';
this.x=0;
thi