web前端培训:JQuery实现1024数独效果

本文介绍如何使用HTML5和JQuery实现1024数独小游戏,包括游戏界面布局、样式定义和JavaScript逻辑,涉及元素选中、事件监听、随机赋值、上下左右移动及碰撞检测等核心功能。
摘要由CSDN通过智能技术生成

今天我们来分享一款很火的小游戏,1024数独,先看看图
在这里插入图片描述
那么我先分享一下html5代码:

您现在得分 0 分
开始
← ↓ →
接下来css代码: * { padding: 0; margin: 0; box-sizing: border-box; }

ul {
list-style: none;
}

.color0 {
background: #FFCCCC;
}

.color1 {
background: #FFCCCC;
}

.color2 {
background: #FF9999;
}

.color3 {
background: #FF99CC;
}

.color4 {
background: #CCCCFF;
}

.color5 {
background: #CC99CC;
}

.color6 {
background: #996699;
}

.color7 {
background: #663366;
}

.color8 {
background: #9999CC;
}

.color9 {
background: #CC6699;
}

.color10 {
background: #CC3399;
}

.color11 {
background: #993366;
}

.color12 {
background: #0099CC;
}

.color13 {
background: #666699;
}

.color14 {
background: #999933;
}

.color15 {
background: #003366;
}

.gameFrame {
border: 1px solid #fdfafa;
width: 300px;
height: 300px;
background: #CCCCCC;
margin: 20px auto 50px;
}

.gameFrame>.gameFrameRow {
width: 300px;
height: 75px;
}

.gameFrame>.gameFrameRow .gameFrameUl {
width: 300px;
height: 100%;
}

.gameFrame>.gameFrameRow .gameFrameUl .gameFrameCell {
display: inline-block;
border: 1px solid #fdfafa;
height: 100%;
width: 75px;
float: left;
padding: 2px;
}

.gameFrame>.gameFrameRow .gameFrameUl .gameFrameCell>span {
display: inline-block;
width: 100%;
height: 100%;
line-height: 75px;
text-align: center;
color: #fff;
}

.scoringArea {
text-align: center;
height: 60px;
line-height: 60px;
}

.operateKey {
text-align: center;
}

.operateKey .gameControlButton {
height: 30px;
padding: 0 8px;
display: inline-block;
vertical-align: middle;
background: #66CC99;
border: none;
border-radius: 4px;
color: #fff;
cursor: pointer;
}

.operateKey .directionsKey {
display: inline-block;
width: 100px;
text-align: center;
margin: 0 auto;
}

.operateKey .directionsKey>div {
width: 100px;
}

.operateKey .directionsKey>div>span {
display: inline-block;
width: 30px;
height: 30px;
line-height: 30px;
margin-top: 10px;
background: #339999;
border-radius: 4px;
color: #fff;
cursor: pointer;
}
最后js代码:
$(function() {
var row = 4,
line = 4;
var cellObject = {}, //初始化所有的位置数据对象
cellArray = [], //初始化所有的位置数据数组
isStartGame = false, //判断是否开始游戏
scoreNum = 0; //初始化分数
var sellPiont = {}; //获取所有已经有点位的数据信息
function gameInit(row, line) {
$(".gameFrameCell").html("");
/初始化参数/
/获取行列数/
row = row, line = line, cellObject = {}, cellArray = [], sellPiont = {}; //初始化所有的位置数据
for (var i = 0; i < row; i++) {
for (var j = 0; j < line; j++) {
var cellKey = i + “” + j;
//cellArray.push(cellKey);//组装位置数组格式,00 01 02 03 11 …
cellObject[cellKey] = {}; //组建对象里面的对象,达到多层的效果
cellObject[cellKey].row = i; //排
cellObject[cellKey].line = j; //列

}
}
}

function randomRendering() {
/随机位置随机赋值,赋值局限(2,4)/
var num = Math.floor(Math.random() * 2), //取随机值,0 产生2 的块,1产生4的块。
cellNum = 2; //初始化为2的块
var createCell = “”, //新建的节点
power = 1; //因为js没有计算固定的开根次的方法,只有 sqrt() ,开平方,
if (num == 0) {
createCell = $(‘2’);
power = 1;
cellNum = 2;
} else {
createCell = $(‘4’);
cellNum = 4;
power = 2;

}
cellArray = Object.keys(cellObject); //组装位置数组格式,00 01 02 03 11 …
/console.log(cellArray.length);/
/获取长度的随机数,随机获取位置块的数据/
var pointsLength = Object.keys(cellObject).length;
if (pointsLength <= 0) {
alert(“游戏结束!”)
return false;
}
var pointNum = Math.floor(Math.random() * pointsLe

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值