资讯专栏INFORMATION COLUMN

贪吃蛇制作移动+pc

yy13818512006 / 3457人阅读

摘要:贪吃蛇制作部分首先我们需要一个的页面制作历史最高分数当前分数简单中级较难开始暂停部分紧接着我们需要一个的页面我是用来做的上面的代码是大盒子移动端的配置部分下面我们需要页面来做效果首先我们要获取

贪吃蛇制作

(https://wujian1994.github.io/...)

HTML部分 首先我们需要一个HTML的页面制作

</>复制代码

    • 历史最高分数:0

    • 当前分数:5

    css部分 紧接着我们需要一个css的页面我是用sass来做的

    </>复制代码

    1. .container{
    2. width: 3.2rem;
    3. height: 3.2rem;
    4. float: left;
    5. ul{
    6. width: 3.16rem;
    7. height: 3.16rem;
    8. border: 2px solid #FF9797;
    9. li{
    10. list-style: none;
    11. width: 0.158rem;
    12. height: 0.158rem;
    13. float: left;
    14. border-radius: 10px;
    15. }
    16. }
    17. }
    上面的css代码是ul大盒子

    </>复制代码

    1. .oper{
    2. font-size: 0.1rem;
    3. padding: 0.2rem 0;
    4. width: 3.2rem;
    5. float: left;
    6. #level{
    7. width: 0.5rem;
    8. height: 0.2rem;
    9. }
    10. input{
    11. margin-top: 0.1rem;
    12. width: 0.5rem;
    13. border-radius: 6px;
    14. height: 0.2rem;
    15. color: #fff;
    16. background: green;
    17. border: none;
    18. outline: none;
    19. font-weight:bold;
    20. }
    21. input:active{
    22. background:#93FF93;
    23. }
    24. }
    移动端的配置

    </>复制代码

    1. @media screen and (min-width:320px){
    2. html{
    3. font-size: 100px;
    4. }
    5. }
    6. @media screen and (min-width:360px){
    7. html{
    8. font-size: 112px;
    9. }
    10. }
    11. @media screen and (min-width:375px){
    12. html{
    13. font-size: 117px;
    14. }
    15. }
    16. @media screen and (min-width:412px){
    17. html{
    18. font-size: 128px;
    19. }
    20. }
    21. @media screen and (min-width:414px){
    22. html{
    23. font-size: 129px;
    24. }
    25. }
    26. @media screen and (min-width:440px){
    27. html{
    28. font-size: 138px;
    29. }
    30. }
    31. @media screen and (min-width:480px){
    32. html{
    33. font-size: 150px;
    34. }
    35. }
    36. @media screen and (min-width:640px){
    37. html{
    38. font-size: 200px;
    39. }.container{margin: 0 auto;}
    40. }
    41. @media screen and (max-width:640px){
    42. html{
    43. font-size: 200px;
    44. }
    45. }
    js部分 下面我们需要js页面来做效果
    首先我们要获取我们需要的标签

    </>复制代码

    1. var oul = document.getElementById("oul");
    2. var btnStart = document.getElementById("btnStart");
    3. var btnsuspend = document.getElementById("btnsuspend");
    4. var bjyy = document.getElementById("bjyy");
    5. var siwang = document.getElementById("siwang");
    6. var siwu = document.getElementById("siwu");
    7. var zuigao = document.getElementById("zuigao");
    8. var fenshu = document.getElementById("fenshu");
    9. var level = document.getElementById("level");
    我们需要初始化ul下面的每一个li

    </>复制代码

    1. //初始化格子
    2. function init(){
    3. var pianduan = document.createDocumentFragment();
    4. for(var i = 0 ; i < 400 ; i++){
    5. var oli = document.createElement("li");
    6. pianduan.appendChild(oli);
    7. }
    8. oul.appendChild(pianduan);
    9. lis = oul.children;
    10. }
    我们需要判断初始化显示几个盒子,加入随机颜色

    </>复制代码

    1. var snake= [];
    2. for(var i=0 ; i<5 ; i++){
    3. snake.push({pos:i , color:randColor()})
    4. }
    5. //随机色
    6. function randColor(){
    7. return "rgb("+Math.floor(Math.random()*256)+","+Math.floor(Math.random()*256)+","+Math.floor(Math.random()*256)+")";
    8. }
    9. //初始化前五个格子改背景色
    10. function initSnake(){
    11. for(var i=0,l=snake.length ; i
    12. 接着我们需要初始化一个食物
    13. </>复制代码

      1. //食物的索引
      2. var food = {pos:0,color:"yellow"};
      3. //生成食物
      4. function initFood(){
      5. var index = Math.floor(Math.random()*400);
      6. while(isInSnake(index)){
      7. index = Math.floor(Math.random()*400);
      8. }
      9. food = {pos:index,color:randColor()};
      10. lis[food.pos].style.background=food.color;
      11. }
    14. 判断食物不能出现在蛇的位置
    15. </>复制代码

      1. //判断食物不能出现蛇的位置
      2. function isInSnake(index){
      3. for(var i=0,l=snake.length ; i
      4. 当我们让蛇运动的时候,每前进一步,最后面的一个将变成白色
      5. </>复制代码

        1. var shewei = snake.slice(0,1)[0].pos;
        2. lis[shewei].style.background = "#fff";
        3. for(var i=0 , l=snake.length ; i
        4. 接着我们在吃掉食物之后,将吃掉的食物累加都蛇尾
        5. </>复制代码

          1. //蛇吃食物的碰撞检测
          2. if(shetou == food.pos){
          3. //将食物放到数组的前面
          4. snake.unshift({pos:shewei,color:food.color});
          5. //音乐特效
          6. siwu.play();
          7. //分数
          8. fenshu.innerHTML = snake.length;
          9. //生成新的食物
          10. initFood();
          11. }
        6. 下面我们做蛇与墙壁的碰撞
        7. </>复制代码

          1. var direction = 39;//方向 37左键 38上键 39右键 40下键
          2. //个数
          3. var geshu = 20;
          4. //蛇跑
          5. var shetou = snake.slice(-1)[0].pos;
          6. //关于墙的碰撞检测
          7. if((shetou+1)%geshu == 0 && direction == 39){
          8. death()
          9. }else if(shetou>=(400-geshu) && direction == 40){
          10. death()
          11. }else if((shetou < geshu) && direction == 38){
          12. death()
          13. }else if(shetou%geshu == 0 && direction == 37){
          14. death()
          15. }
        8. 接着我们检测是否碰撞到自身
        9. </>复制代码

          1. //检测是否吃到自己
          2. for(var i=0 , l=snake.length ; i
          3. 下面我们控制方向
          4. </>复制代码

            1. if(direction == 40){//向下
            2. snake[l-1].pos = snake[l-1].pos+geshu;
            3. }else if(direction == 37){//向左
            4. snake[l-1].pos = snake[l-1].pos-1;
            5. }else if(direction == 39){//向右
            6. snake[l-1].pos = snake[l-1].pos+1;
            7. }else if(direction == 38){//向上
            8. snake[l-1].pos = snake[l-1].pos-geshu;
            9. }
            10. //给文档加点击下键事件
            11. document.addEventListener("keydown" , function(e){
            12. e=e || window.event;
            13. //获取按下的是什么键
            14. switch(e.keyCode){
            15. //左键
            16. case 37:{
            17. if(direction == 39)return false;
            18. direction = e.keyCode;
            19. break;
            20. }
            21. //上键
            22. case 38:{
            23. if(direction == 40)return false;
            24. direction = e.keyCode;
            25. break;
            26. }
            27. //右键
            28. case 39:{
            29. if(direction == 37)return false;
            30. direction = e.keyCode;
            31. break;
            32. }
            33. //下键
            34. case 40:{
            35. if(direction == 38)return false;
            36. direction = e.keyCode;
            37. break;
            38. }
            39. }
            40. } , false)
          5. 如果碰撞到墙壁和自身以后调用死亡函数
          6. </>复制代码

            1. //死亡函数
            2. function death(){
            3. alert("你以头破血流,游戏结束!");
            4. //location.href=location.href;
            5. location.reload();
            6. }
          7. 接着我们来做开始游戏和暂停游戏
          8. </>复制代码

            1. var timer = null;
            2. //开始游戏
            3. btnStart.onclick = function(){
            4. clearInterval(timer);
            5. timer = setInterval(yundong,shudu);
            6. //背景音乐开始
            7. bjyy.play();
            8. }
            9. //暂停游戏
            10. btnsuspend.onclick = function(){
            11. clearInterval(timer);
            12. }
          9. 下面我们设置游戏难度
          10. </>复制代码

            1. //蛇的熟读
            2. var shudu = 100;
            3. //设置难度
            4. shudu = level.value;
          11. 紧跟着我们需要做历史最高分数和当前分数
          12. </>复制代码

            1. //获取蛇的长度
            2. //分数
            3. fenshu.innerHTML = snake.length;
            4. //历史最高分
            5. var score = localStorage.getItem("score")||0;
            6. //分数
            7. fenshu.innerHTML = snake.length;
            8. var changdu = snake.length;
            9. //历史最高分
            10. var score = localStorage.getItem("score")||0;
            11. if(changdu > score){
            12. localStorage.setItem("score" , changdu);
            13. }
          13. 最后我们做手机效果,上下左右滑动
          14. </>复制代码

            1. function hua(e){
            2. //获取按下的是什么键
            3. switch(e){
            4. //左键
            5. case 37:{
            6. if(direction == 39)return false;
            7. direction = e;
            8. break;
            9. }
            10. //上键
            11. case 38:{
            12. if(direction == 40)return false;
            13. direction = e;
            14. break;
            15. }
            16. //右键
            17. case 39:{
            18. if(direction == 37)return false;
            19. direction = e;
            20. break;
            21. }
            22. //下键
            23. case 40:{
            24. if(direction == 38)return false;
            25. direction = e;
            26. break;
            27. }
            28. }
            29. }
            30. //位置改变
            31. //开启滑动
            32. hammertime.get("swipe").set({ direction: Hammer.DIRECTION_ALL });
            33. hammertime
            34. .on("swipeleft", logEventType1)
            35. .on("swiperight", logEventType3)
            36. .on("swipeup",logEventType2)
            37. .on("swipedown", logEventType4);
            38. function logEventType1() {
            39. hua(37);
            40. }
            41. function logEventType2() {
            42. hua(38);
            43. }
            44. function logEventType3() {
            45. hua(39);
            46. }
            47. function logEventType4() {
            48. hua(40);
            49. }

    文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

    转载请注明本文地址:https://www.ucloud.cn/yun/91427.html

    相关文章

    • 简简单单制作贪吃小游戏

      摘要:利用制作简单的贪吃蛇游戏首先,我们先来分析一下整个页面的构成。代码如下因为我们需要兼容移动端设备和端设备,所以我们需要在前加上媒体查询样式,并且在使用单位时,需要用到而不是。 利用js制作简单的贪吃蛇游戏 showImg(https://segmentfault.com/img/remote/1460000010708169); 首先,我们先来分析一下整个页面的构成。一看可知,游戏框内...

      Kross 评论0 收藏0
    • 使用TypeScript和Canvas编写移动贪吃大作战游戏

      摘要:基本介绍一款移动端贪吃蛇大作战游戏。主要的游戏逻辑有贪吃蛇移动碰撞检测贪吃蛇碰撞碰撞墙壁和吃食物。贪吃蛇的身体如何跟随头部移动需要分为两种情况,在单位时间内贪吃蛇移动一单位长度和贪吃蛇移动多单位长度。 基本介绍 一款移动端贪吃蛇大作战游戏。(只支持移动端) 这是一个临近 deadline 的课设项目,为了方便地使用TS,我直接使用angular-cli生成了TypeScript的项...

      AlphaWallet 评论0 收藏0
    • PyGame贪吃的实现

      摘要:最近帮人做了个贪吃蛇的游戏交作业用,很简单,界面如下开始界面游戏中界面是不是很简单朴素。代码在这里赋值,而不是在事件的循环中赋值,避免按键太快 最近帮人做了个贪吃蛇的游戏(交作业用),很简单,界面如下:开始界面: showImg(https://segmentfault.com/img/bV49cP?w=638&h=478); 游戏中界面: showImg(https://segmen...

      elisa.yang 评论0 收藏0
    • JS用原型对象写的贪吃,很粗糙的代码

      摘要:贪吃蛇类默识贪吃蛇速度,毫秒地图轴分为多少单位地图轴分为多少单位贪吃蛇运动速度贪吃蛇每节身体和食物的宽高地图轴分为多少单位初始化贪吃蛇属性蛇移动方向食物和食物的坐标游戏开始创建地图初始化食物初始化贪吃蛇绑定键盘方向更改贪吃蛇方向移动贪吃蛇创 /** 贪吃蛇类 @author 默识 @param {int} speed 贪吃蛇速度,毫秒 @param {int} x 地图x轴分...

      YanceyOfficial 评论0 收藏0

    发表评论

    0条评论

    最新活动
    阅读需要支付1元查看
    <