这几天一直忙于公司的项目,涉及到流程问题,(有时间会写成博客的)。。。一直没有更新。。。

为了更加巩固js的基础,自己封装类似于JQuery的操作库来对dom进行操作。

一:前度页面的绘制。

<!DOCTYPE html>
<html lang="en"> <head>
<meta charset="UTF-8">
<title>俄罗斯方块</title>
<link rel="stylesheet" href="css/index.css">
</head> <body>
<div class="start-container">
<p><button id="btn-start">开始游戏</button></p>
<p><button id="btn-setting">设置</button></p>
</div>
<div class="game-container">
<div class="timer-panel">
<div class="panel-header">
使用时间
</div>
<div class="panel-body">
<canvas id="timer"></canvas>
</div>
</div>
<div class="help-panel">
<div class="panel-body">
<p>↑ 翻转方块</p>
<p>↓ 加速下落</p>
<p>→ 向右移动</p>
<p>← 向左移动</p>
</div>
</div>
<div class="level-panel">
<div class="panel-header">
当前级别
</div>
<div class="panel-body">
<canvas id="level"></canvas>
</div>
</div>
<div class="game-main-panel">
<canvas id="c_game_main"></canvas>
</div>
<div class="next-panel">
<div class="panel-header">
下一方块
</div>
<div class="panel-body">
<canvas id="nextshape"></canvas>
</div>
</div>
<div class="setting-panel">
<div class="panel-body">
<button id="btn-game-pause">暂停</button><br><br><button id="btn-game-setting">设置</button>
</div>
</div>
<div class="score-panel">
<div class="panel-header">
当前得分
</div>
<div class="panel-body">
<canvas id="score"></canvas>
</div>
</div>
<div class="high-score-panel">
<div class="panel-header">
最高得分
</div>
<div class="panel-body">
<canvas id="highscore"></canvas>
</div>
</div>
</div>
<div class="modal-dialog">
<div class="modal-body">
<label for="ck-sound">启用声音</label>
<input type="checkbox" id="ck-sound">
<br>
<br>
<button id="btn-dialog-close">关闭</button>
</div>
</div>
<script src="vendor/howler.min.js"></script>
<script src="js/config.js"></script>
<script src="js/ResourceManager.js"></script>
<script src="js/Canvas.js"></script>
<script src="js/Keyboard.js"></script>
<script src="js/Score.js"></script>
<script src="js/Timer.js"></script>
<script src="js/Level.js"></script>
<script src="js/NextShape.js"></script>
<script src="js/HighScore.js"></script>
<script src="js/Block.js"></script>
<script src="js/Shape.js"></script>
<script src="js/Board.js"></script>
<script src="js/Tetris.js"></script>
<script src="js/app.js"></script>
</body> </html>

对应的css样式:

*{
box-sizing: border-box;
}
html,body,div{
margin: 0;
padding: 0;
} body{
background: #000;
color: #fff;
} .game-container, .start-container{
position: relative;
box-sizing: content-box;
height: 600px;
width: 590px;
margin: 0 auto;
margin-top: 50px;
border: 1px solid green;
} .game-container{
display: none;
} .start-container{
background: url(../images/bg_start.png);
background-size: cover;
width: 390px;
padding-top: 280px;
box-sizing: border-box;
} .start-container p{
text-align: center;
margin-top: 40px;
} .start-container p button{
width: 200px;
height: 50px;
line-height: 50px;
font-size: 20px;
font-family: 微软雅黑;
border: 0;
border-radius: 50%;
outline: none;
cursor: pointer;
background: lightblue;
} .start-container p button:hover{
background: lightcoral;
} .game-main-panel{
position: absolute;
left: 100px;
top: 0;
width: 390px;
height: 600px;
border-left: 1px solid green;
border-right: 1px solid green;
}
.timer-panel{
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 100px;
}
.help-panel{
position: absolute;
top: 150px;
left: 0;
width: 100px;
}
.level-panel{
position: absolute;
left: 0;
bottom: 0;
width: 100px;
height: 100px;
}
.next-panel{
position: absolute;
right: 0;
top: 0;
width: 100px;
height: 100px;
}
.setting-panel{
position: absolute;
top: 150px;
right: 0;
width: 100px;
}
.score-panel{
position: absolute;
right: 0;
bottom: 120px;
width: 100px;
height: 100px;
}
.high-score-panel{
position: absolute;
right: 0;
bottom: 0;
width: 100px;
height: 100px;
}
.panel-header{
height: 30px;
line-height: 30px;
padding-left: 5px;
font-size: 18px;
color:#fff;
background: lightsalmon;
}
.panel-body{
text-align: center;
line-height: 70px;
}
.help-panel .panel-body,
.setting-panel .panel-body{
line-height: normal;
}
.timer-panel, .next-panel, .score-panel{
border-bottom: 1px solid green;
} .modal-dialog{
display: none;
} .modal-dialog .modal-body{
position: fixed;
height: 300px;
width: 390px;
top: 50%;
margin-top: -150px;
left: 50%;
margin-left: -195px;
background: #000;
z-index: 100;
text-align: center;
} .modal-dialog::after{
content: '';
position: fixed;
top:0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255,255,255,0.3);
}
												

H5实现俄罗斯方块(一)的更多相关文章

  1. H5版俄罗斯方块(2)---游戏的基本框架和实现

    前言: 上文中谈到了H5版俄罗斯方块的需求和目标, 这次要实现一个可玩的版本. 但饭要一口一口吃, 很多东西并非一蹴而就. 本文将简单实现一个可玩的俄罗斯方块版本. 下一步会引入AI, 最终采用coc ...

  2. H5版俄罗斯方块(3)---游戏的AI算法

    前言: 算是"long long ago"的事了, 某著名互联网公司在我校举行了一次"lengend code"的比赛, 其中有一题就是"智能俄罗斯方 ...

  3. H5版俄罗斯方块(1)---需求分析和目标创新

    前言: 俄罗斯方块和五子棋一样, 规则简单, 上手容易. 几乎每个开发者, 都会在其青春年华时, 签下"xx到此一游". 犹记得大一老师在布置大程作业的时候提过: "什么 ...

  4. H5版俄罗斯方块(4)---火拼对战的雏形

    前言: 勿忘初心, 本系列的目标是实现一款类似QQ"火拼系列"的人机对战版俄罗斯方块. 在完成了基本游戏框架和AI的算法探索后, 让我们来尝试一下人机大战雏形编写. 本系列的文章链 ...

  5. H5实现俄罗斯方块(四)

    图片加载的js: (function (window) { 'use strict'; //定义缓存的Map对象 var cacheMap = new Map(); //资源的总数量 var reso ...

  6. H5实现俄罗斯方块(三)

    最高分的面板: (function (window) { 'use strict'; function HighScore() { this.canvas = new Canvas('highscor ...

  7. H5版俄罗斯方块(5)---需求演进和产品迭代

    前言: 产品的形态是不断迭代的, 从粗糙到精致, 从简易到立体. 有了最初的技术积累和时间思考后, 终于明确了该游戏的方向. 我想说的是: 技术不是重点, 产品/用户体验才是核心议题. 结合朋友的游戏 ...

  8. H5实现俄罗斯方块(二)

    对应的js 1.封装操作dom的js: (function (document) { //游戏的实例 var gameInst; /**封装一个返回原型的DOM对象 */ function DomOb ...

  9. 自己写了个H5版本的俄罗斯方块

    在实习公司做完项目后,实在无聊.就用H5写了几个游戏出来玩一下.从简单的做起,就搞了个经典的俄罗斯方块游戏. 先上效果: 上面的数字是得分,游戏没有考虑兼容性,只在chrome上测试过,不过大部分现代 ...

随机推荐

  1. 自定义头文件 No such file or directory

    my_file.h为你的头文件名 要用#include"my_file.h",而不能是#include<my_file.h>. 如果头文件名在尖括号<>里, ...

  2. 生产订单修改删除组件BDC

    可用函数修改:CO_XT_COMPONENT_CHANGE,一次一个 FORM prm_change_bom . DATA:gw_zstypf TYPE zstypf. DATA:lv_rspos T ...

  3. SAP 快速报表

    快速报表,这个名字不知道是不是第一个用,不过以这种方式做的报表,速度确实挺快的,应该比QUERY快,还简单 T-CODE:SQVI 进入界面后,输入一个报表名称,点击新建,这时候可以选择,单表查询,链 ...

  4. php-fpm的重启/关闭

    php 5.3.3 下的php-fpm 不再支持 php-fpm 以前具有的 /usr/local/php/sbin/php-fpm (start|stop|reload)等命令,需要使用信号控制: ...

  5. 支持向量机的smo算法(MATLAB code)

    建立smo.m % function [alpha,bias] = smo(X, y, C, tol) function model = smo(X, y, C, tol) % SMO: SMO al ...

  6. HDU 4123(树的直径+单调队列)

    Bob’s Race Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total ...

  7. 闲聊CSS之关于clearfix--清除浮动[转]

    .clearfix:after { content: " "; display: block; clear: both; height:; } .clearfix { zoom:; ...

  8. 如何给一个网卡配置多个虚拟ip

    1.执行命令 ifconfig etho: 192.168.1.101 netmask 255.255.255.0 up 2.要想永久保存,则将刚刚那行代码写入/etc/rc.local  (开机都会 ...

  9. 安装Adobe Dreamweaver CS6 免序列号 官方破解版

    Adobe Dreamweaver CS6 免序列号 官方破解版 Adobe Dreamweaver CS6是世界顶级软件厂商Adobe推出的一套可视化的网页开发工具,Dreamweaver CS6最 ...

  10. poj题目必做

    OJ上的一些水题(可用来练手和增加自信) (poj3299T,poj2159T,poj2739T,poj1083T,poj2262T,poj1503T,poj3006T,poj2255T,poj309 ...