2048小游戏设计思路

2048小游戏设计思路:
设计思路
游戏初始截图:
在这里插入图片描述
游戏过程中截图:
在这里插入图片描述
游戏失败截图:
在这里插入图片描述
部分代码:

<!DOCTYPE html>

<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>2048小游戏</title>
<script type="text/javascript">

function showBestScore(){
	//从本地存储数据中读取历史最高分
    bestScore = localStorage.getItem("bestScore");
     //如果尚未记录最高分,则重置为0
    if (bestScore == null)
        bestScore = 0;
    //将历史最高分更新到状态栏中
    var best = document.getElementById("bestScore");
    best.innerHTML = bestScore;
}

var arr;
//初始化游戏页面,需要在表格中随机生成一个2,一个4
function init(){
	showBestScore();
    arr = new Array(4);
    for(i=0;i<arr.length;i++){
        arr[i]=[0,0,0,0];
    }
    var x1,x2,y1,y2;
    x1=Math.round(Math.random()*3);
    y1=Math.round(Math.random()*3);
    arr[x1][y1] =2;
    while(true){
        x2=Math.round(Math.random()*3);
        y2=Math.round(Math.random()*3);
        if(x1!=x2 || y1!=y2){
            arr[x2][y2] =4;
            break;
        }
    }
    display();
    show();

}

备注:查看网页2048游戏代码请下载附件
https://download.csdn.net/download/YQEMMMM/13055844

  • 1
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值