完整版的网页贪吃蛇

寒假无聊在家写的

<!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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值