The only rule of the game is that we only need to keep stepping on the black squares to move forward. Here we step on the white squares according to the direction keys. Within the specified time, the score will be increased by 100 for each step. Let me share the Javascript with you through this article Let’s take a look at the implementation code of the mini game “Don’t step on the white tiles” (piano tiles)
. The only rule of the game is that we only need to keep stepping on the black squares to move forward. Here we use the direction keys to step on the white squares. Block
Within the specified time, the score will be increased by 100 for each move
Each row in the game is an array with four elements. After correctly stepping on the black block and moving forward, all the object style attributes (backgroundColor) in the previous array are assigned to the objects at the corresponding positions in the subsequent array, thus realizing the function of moving forward. A very simple idea
<!DOCTYPE html><html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> *{padding: 0; margin: 0; } .p_bg { width: 410px; height: 512px; margin-top: 10px; border: 1px solid black; box-shadow: 0px 0px 20px #102327; } #score{ margin-top: 10px; color: #365669; margin:0 auto; width: 350px; height: 80px; } .span_1 { font-size: 3em; } .box_list { border-radius: 100%; text-align: center; line-height: 100px; color: red; font-size: 2em; } .box_list_1 { border-radius: 100%; box-shadow: 0px 0px 20px #ff5026; text-align: center; line-height: 100px; color: red; font-size: 2em; } .img{ margin: 0 auto; margin-top: 15px; } .over{ border: 2px solid #23f00f; border-radius: 20%; box-shadow: 0px 0px 5px red,0px 0px 10px blue,0px 0px 15px white; top: 200px; left: 50%; margin-left: -150px; color: black; line-height: 50px; text-align: center; font-size: 20px; } .newGame{ border: 2px solid #23fdff; border-radius: 20%; box-shadow: 0px 0px 5px red,0px 0px 10px blue,0px 0px 15px green; top: 350px; left:50%; margin-left: -50px; color: white; font-size: 16px; z-index: 9999; } .newGame:hover{ border: 2px solid #c05e8c; color: #A1FEDC; } #clock{ font-size: 4em; color: red; margin:0 auto; width: 350px; height: 80px; } </style> </head> <body> <p style="width: 410px;margin: 0 auto;"> <p class="p_bg"> </p> <p id="clock">00:00:20:00</p> <p id="score"> <p class="span_1"></p> </p> </p> <script> var box; var sum = 0;//全局变量 分数 var oclock=document.getElementById("clock"); var start1 = oclock.innerHTML; var finish = "00:00:00:00"; var timer = null;// var Over=new over();//实例化对象结束游戏框 var NewGame=new newGame();//实例化重新开始游戏按钮 var index=false;//标志位哦(用于控制结束游戏框重复出现) var again=true;//标志位(用于结束游戏后控制无法再踩白块) box = new showbox();//实例化对象 box.show();//构造游戏白块 window.onkeydown = function (e) { box.clickinfo(e.keyCode);//获取方向键keyCode值并传参调用函数 } function onTime()//定义倒计时秒表函数 { if (start1 == finish)//到达时间执行 { index=true; clearInterval(timer); if(index==true){ //由于后续定时器一直执行,当点击重新开始游戏后会重复出现结束框,所以设置标志位控制只出现一次 Over.createOver(); index=false; } return; } var hms = new String(start1).split(":");//以:作为分隔符号取字符串内的数据 var ms = new Number(hms[3]);//给每个数据定义对象 var s = new Number(hms[2]); var m = new Number(hms[1]); var h = new Number(hms[0]); ms -= 10;//每次执行ms减10 if (ms < 0)//判断时间并进行变化 { ms = 90; s -= 1; if (s < 0) { s = 59; m -= 1; } if (m < 0) { m = 59; h -= 1; } } var ms = ms < 10 ? ("0" + ms) : ms;//如果出现个位数给个位数前面添加0 var ss = s < 10 ? ("0" + s) : s; var sm = m < 10 ? ("0" + m) : m; var sh = h < 10 ? ("0" + h) : h; start1 = sh + ":" + sm + ":" + ss + ":" + ms; oclock.innerHTML = start1;//重新给oclock赋值 clearInterval(timer); timer =setInterval("onTime()", 100); } function run() {//开始倒计时函数 timer =setInterval("onTime()", 100); } function showbox() {//定义构造函数创建白块 this.width = 100; this.height = 100; this.border = "1px solid black"; this.float = "left"; this.color = "black"; this.body = [[null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null]]; /*定义一个二维数组,每一个数组中存放的元素代表每一个白块对象一排四个一共五排*/ this.show = function () { document.getElementsByClassName("span_1")[0].innerHTML = "分数:" + sum;//初始化分数 for (var i = 0; i < this.body.length; i++) {//两重循环动态创建白块和黑块 var ran_num = Math.floor(Math.random() * 4);//去一个(0~3)的随机数,使每一行随机位置出现一个黑块 for (var k = 0; k < this.body[i].length; k++) { if (this.body[i][k] == null) {//事先判断一下是否已近存在该对象,防止产生多余对象(后续会多次调用该方法) this.body[i][k] = document.createElement("p"); this.body[i][k].style.width = this.width + "px";//给对象添加属性 this.body[i][k].style.height = this.height + "px"; this.body[i][k].style.border = this.border; this.body[i][k].style.float = this.float;//让每一个白块浮动 if (k == ran_num) {//随机黑块位置 this.body[i][k].className = "box_list"; this.body[i][k].style.backgroundColor = this.color; } else { this.body[i][k].className = "box_list_1"; this.body[i][k].style.backgroundColor = "white"; } } document.getElementsByClassName("p_bg")[0].appendChild(this.body[i][k]); } } for(var i=0;i<this.body.length;i++){//两重循环给黑块添加方向键图片(这里是页面加载后执行) for(var j=0;j<this.body[i].length;j++){ if(this.body[i][j].style.backgroundColor=="black"){ this.body[i][j].innerHTML="<img class=img src='image/direct"+j+".png'/ alt="Example of Javascript mini game: Don't step on the white blocks" >"; //这里我给图片direct0(方向左)direct1(方向上)direct2(方向下)direct3(方向右)命名 } } } } this.clickinfo = function (code) {//code:传的方向键keyCode值 for (var i = 0; i < 4; i++) {//给最下面一行索引赋值 this.body[4][i].index = i; } if (code == 37) { if (this.body[4][0].style.backgroundColor == "black") {//判断若是方向左键且当前是黑块 box.moveinfo(); } else { document.getElementsByClassName("span_1")[0].innerHTML = "分数:" + sum;//变动分数 clearInterval(timer); Over.createOver();//现实游戏结束框 again=false; } } if (code == 38) { if (this.body[4][1].style.backgroundColor == "black") { box.moveinfo(); } else { document.getElementsByClassName("span_1")[0].innerHTML = "分数:" + sum; clearInterval(timer); Over.createOver(); again=false; } } if (code == 40) { if (this.body[4][2].style.backgroundColor == "black") { box.moveinfo(); } else { document.getElementsByClassName("span_1")[0].innerHTML = "分数:" + sum; clearInterval(timer); Over.createOver(); again=false; } } if (code == 39) { if (this.body[4][3].style.backgroundColor == "black") { box.moveinfo(); } else { document.getElementsByClassName("span_1")[0].innerHTML = "分数:" + sum; clearInterval(timer); Over.createOver(); again=false; } } for(var i=0;i<this.body.length;i++){//再一次两重循环给黑块添加方向键图片(这里是在游戏过程中) for(var j=0;j<this.body[i].length;j++){ this.body[i][j].innerHTML=""; if(this.body[i][j].style.backgroundColor=="black"){ this.body[i][j].innerHTML="<img class=img src='image/direct"+j+".png'/ alt="Example of Javascript mini game: Don't step on the white blocks" >"; } } } } this.moveinfo = function () {//踩白块前进功能函数 if (again == true) { clearInterval(timer);//先清除一次定时器因为后面会再次调用,多余的定时器会让时间加速倒计时 sum += 100;//每走一次加100分 run();//开启倒计时(当第一次走的时候 开始倒计时,标志着游戏开始了) document.getElementsByClassName("span_1")[0].innerHTML = "分数:" + sum;//每走一次都要动态改变一下当前分数 for (var k = 4; k > 0; k--) { //把后一排所有块的样式属性变为其前一排块和其相对应位置块的样式属性 // 这里注意:要从最后一排开始赋值,并且第一排的块不算进去 for (var i = 0; i < 4; i++) { this.body[k][i].style.backgroundColor = this.body[k - 1][i].style.backgroundColor; } } var ran_num = Math.floor(Math.random() * 4); //取随机数创建第一排黑白块 for (var i = 0; i < 4; i++) { if (i == ran_num) { this.body[0][i].style.backgroundColor = "black"; } else { this.body[0][i].style.backgroundColor = "white"; } } this.show();//每一次踩白块都要调用一下show让全局改变一下 } } } function over(){//定义结束游戏框构造函数 this.width="300px"; this.height="100px"; this.bgColor="#ccc"; this.position="absolute"; this._over=null; this.className="over"; this.createOver=function(){ if(this._over==null){ this._over=document.createElement("p"); this._over.style.width=this.width; this._over.style.height=this.height; this._over.style.backgroundColor=this.bgColor; this._over.style.position=this.position; this._over.className=this.className; this._over.innerHTML="<span>游戏结束</br>得分:"+sum+"</span>"; document.body.appendChild(this._over); NewGame.createNewGame(); } } } function newGame(){//定义重新开始按钮构造函数 this.width="100px"; this.height="40px"; this.bgColor="#4D5260"; this.position="absolute"; this._newGame=null; this.className="newGame"; this.createNewGame=function(){ if(this._newGame==null){ this._newGame=document.createElement("button"); this._newGame.style.width=this.width; this._newGame.style.height=this.height; this._newGame.style.backgroundColor=this.bgColor; this._newGame.style.position=this.position; this._newGame.className=this.className; this._newGame.innerHTML="<span>重新开始</span>"; document.body.appendChild(this._newGame); } var oNewGame=document.getElementsByClassName("newGame")[0];//获取创建后的重新开始按钮 oNewGame.onclick=function(){//添加点击事件 初始各种对象 sum=0; again=true; document.getElementsByClassName("span_1")[0].innerHTML = "分数:" + sum; document.getElementById("clock").innerHTML="00:00:20:00"; start1="00:00:20:00"; document.getElementsByClassName("newGame")[0].remove();//移除重新开始按钮 document.getElementsByClassName("over")[0].remove();//移除结束游戏框 NewGame._newGame=null; Over._over=null; } } } </script> </body> </html>
Summary
The above is the Javascript that the editor introduces to you. Don’t step on the white tiles (piano tiles) (Child) Small game implementation code, I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for your support of the Script House website!
The above is the detailed content of Example of Javascript mini game: Don't step on the white blocks. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
