add game end scene
This commit is contained in:
parent
e881542c83
commit
aaf6b69cc3
@ -1,5 +1,6 @@
|
||||
## 2.0.2 # Build 2 [2021-02-25]
|
||||
- ➕ - Added game statistics
|
||||
- ➕ - Added end game scene
|
||||
- ✔️ - Fix keyboard fize on big screen
|
||||
- ♻️ - JS code replace `var` by `let`
|
||||
|
||||
|
6
TODO.md
6
TODO.md
@ -1,5 +1,5 @@
|
||||
[+] Keyboard fit
|
||||
[ ] Game Statistics
|
||||
[ ] Restart scene
|
||||
[ ] Android manifest
|
||||
[+] Keyboard fit
|
||||
[+] Game Statistics
|
||||
[+] Restart scene
|
||||
[+] iOS web app
|
||||
|
16
js/game.js
16
js/game.js
@ -67,9 +67,13 @@ function letterClick(letter)
|
||||
|
||||
if (gameAnswered.split('').indexOf('-') == -1)
|
||||
{
|
||||
alert('You Win');
|
||||
updateStats('stWinWords');
|
||||
document.location.reload(true);
|
||||
|
||||
document.querySelector('#keyboard').innerHTML = '\
|
||||
<img src="https://icongr.am/clarity/happy-face.svg?size=128&color=28bd14">\
|
||||
<h1 class="text-success">Your winner!!</h1>\
|
||||
<button class="button error" onclick="document.location.reload(true);"\
|
||||
>Restart game</button>';
|
||||
}
|
||||
}
|
||||
|
||||
@ -78,9 +82,13 @@ function wrongLetter()
|
||||
{
|
||||
if (lives <= 0)
|
||||
{
|
||||
alert('You dead');
|
||||
updateStats('stTotalGames');
|
||||
document.location.reload(true);
|
||||
|
||||
document.querySelector('#keyboard').innerHTML = '\
|
||||
<img src="https://icongr.am/clarity/sad-face.svg?size=128&color=d43939">\
|
||||
<h1 class="text-error">Your lose!!</h1>\
|
||||
<button class="button error" onclick="document.location.reload(true);"\
|
||||
>Restart game</button>';
|
||||
}
|
||||
|
||||
lives -= 1;
|
||||
|
Loading…
Reference in New Issue
Block a user