added endgame file testing mockup
This commit is contained in:
parent
6f771b32ba
commit
033f57cc4c
4 changed files with 75 additions and 3 deletions
|
@ -132,7 +132,6 @@ function initialize(a) {
|
||||||
window.framerate = 60;
|
window.framerate = 60;
|
||||||
window.history = {};
|
window.history = {};
|
||||||
window.score = 0;
|
window.score = 0;
|
||||||
window.isGameOver = 3;
|
|
||||||
window.scoreAdditionCoeff = 1;
|
window.scoreAdditionCoeff = 1;
|
||||||
window.prevScore = 0;
|
window.prevScore = 0;
|
||||||
window.numHighScores = 3;
|
window.numHighScores = 3;
|
||||||
|
|
|
@ -93,7 +93,6 @@ function init(b) {
|
||||||
history = {};
|
history = {};
|
||||||
importedHistory = undefined;
|
importedHistory = undefined;
|
||||||
importing = 0;
|
importing = 0;
|
||||||
isGameOver = 2;
|
|
||||||
score = saveState.score || 0;
|
score = saveState.score || 0;
|
||||||
prevScore = 0;
|
prevScore = 0;
|
||||||
spawnLane = 0;
|
spawnLane = 0;
|
||||||
|
@ -360,4 +359,4 @@ function showHelp() {
|
||||||
|
|
||||||
$("#openSideBar").fadeIn(150,"linear");
|
$("#openSideBar").fadeIn(150,"linear");
|
||||||
$('#helpScreen').fadeToggle(150, "linear");
|
$('#helpScreen').fadeToggle(150, "linear");
|
||||||
}
|
}
|
||||||
|
|
BIN
style/fonts/Exo2-ExtraLight.otf
Normal file
BIN
style/fonts/Exo2-ExtraLight.otf
Normal file
Binary file not shown.
74
test_endgame.html
Normal file
74
test_endgame.html
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style type="text/css">
|
||||||
|
@font-face {
|
||||||
|
font-family: Exo;
|
||||||
|
font-weight: light;
|
||||||
|
src:url("./style/fonts/Exo2-ExtraLight.otf") format("opentype");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Exo;
|
||||||
|
src:url("./style/fonts/Exo2-Regular.otf") format("opentype");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Exo;
|
||||||
|
font-weight: bold;
|
||||||
|
src:url("./style/fonts/Exo2-SemiBold.otf") format("opentype");
|
||||||
|
}
|
||||||
|
|
||||||
|
#container {
|
||||||
|
color: #232323;
|
||||||
|
position: absolute;
|
||||||
|
left:50%;
|
||||||
|
top:50%;
|
||||||
|
text-align: center;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
font-family: Exo;
|
||||||
|
-webkit-transform: translate(-50%, -50%);
|
||||||
|
-moz-transform: translate(-50%, -50%);
|
||||||
|
-ms-transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.GOTitle {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gameOverBox {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.scoreNum {
|
||||||
|
font-weight: normal ! important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cScore {
|
||||||
|
font-size: 55px;
|
||||||
|
font-weight:light;
|
||||||
|
margin-bottom: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#highScoresTitle {
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.score {
|
||||||
|
font-weight: light;
|
||||||
|
line-height: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id = 'container'>
|
||||||
|
<div id = 'gameOverBox' class = 'GOTitle'>GAME OVER</div>
|
||||||
|
<div id = 'cScore'>1843</div>
|
||||||
|
<div id = 'highScoresTitle' class = 'GOTitle'>HIGH SCORES</div>
|
||||||
|
<div class = 'score'><span class = 'scoreNum'>1.</span> 1870</div>
|
||||||
|
<div class = 'score'><span class = 'scoreNum'>2.</span> 1540</div>
|
||||||
|
<div class = 'score'><span class = 'scoreNum'>3.</span> 1130</div>
|
||||||
|
<div class = 'score'><span class = 'scoreNum'>4.</span> 960</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue