JS实现简易贪吃蛇游戏
本文实例为大家分享了JS实现简易贪吃蛇的具体代码,供大家参考,具体内容如下
#body{ width:900px;/*长宽最好是obj的倍数*/ height:600px; border-width:10px; border-style:solid; border-color:blue; line-height:600px;/*文本垂直居中*/ text-align:center;/*文本水平居中*/ position:relative;/*相对定位*/ left:0px; top:0px; } #obj{ width:30px; height:30px; background-color:red; position:absolute;/*绝对定位*/ left:0px; top:0px; z-index:1;/*头部在上层显示*/ } div{ text-align:center; line-height:30px; } 按awsd移动