当前位置:   article > 正文

JS实现简易版贪吃蛇小游戏(纯js代码)_贪吃蛇食物js代码

贪吃蛇食物js代码
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html>
  3. <head>
  4. <title>新建网页</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <meta name="description" content=""/>
  7. <meta name="keywords" content=""/>
  8. <script type="text/javascript">
  9. //① 绘制地图
  10. function Map() {
  11. //私有成员(不会随便发生变化)
  12. var w = 800;
  13. var h = 400;
  14. //成员方法,绘制地图
  15. this.showmap = function () {
  16. //创建div、设置css样式、追加给body
  17. var tu = document.createElement('div');
  18. tu.style.width = w + "px";
  19. tu.style.height = h + "px";
  20. tu.style.backgroundImage = "url(./12.jpg)";
  21. document.body.appendChild(tu);
  22. }
  23. }
  24. //② 绘制食物
  25. function Food() {
  26. var len = 20;
  27. //把食物(权值)坐标声明为公开的,以便在外部访问
  28. this.xFood = 0;
  29. this.yFood = 0;
  30. this.piece = null; //页面上唯一的食物对象
  31. //绘制
  32. this.showfood = function () {
  33. //创建div、设置css样式、追加给body
  34. if (this.piece === null) {
  35. this.piece = document.createElement('div');
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/1001481?site
推荐阅读
相关标签
  

闽ICP备14008679号