mirror of
https://codeberg.org/JasterV/MEMORY-CARD-GAME.git
synced 2026-04-26 18:20:03 +00:00
💗💴 Checkpoint
./style.css:18108127/58 ./script.js:18108127/813
This commit is contained in:
parent
b38a58bcaf
commit
53b55c4e91
2 changed files with 10 additions and 2 deletions
|
|
@ -47,6 +47,8 @@ let imgsGrid = document.getElementById("images-grid");
|
|||
let congratsDiv = document.querySelector(".congrats-container");
|
||||
let playAgainBtn = document.getElementById("play-again-btn");
|
||||
|
||||
let tries = 0;
|
||||
|
||||
let imgDivArray = createGridContentArray(imgSrc);
|
||||
let discoveredCards = [];
|
||||
let currentUser = "";
|
||||
|
|
@ -60,6 +62,8 @@ imgDivArray.forEach(targetCard => {
|
|||
|
||||
if (discoveredCards.length % 2 == 0) {
|
||||
discoveredCards.push(targetCard);
|
||||
tries++;
|
||||
console.log(tries)
|
||||
} else {
|
||||
let lastCard = discoveredCards[discoveredCards.length - 1];
|
||||
if (areEqualCards(targetCard, lastCard)) {
|
||||
|
|
@ -151,6 +155,7 @@ function scoreBarController(barId) {
|
|||
if (this.hasUser(username)) {
|
||||
let userContainer = this.getUser(username);
|
||||
userContainer.lastElementChild.innerHTML = `<i class="fas fa-stopwatch"></i> ${Math.floor(seconds)} seconds`;
|
||||
userContainer.appendChild.innerHTML = `<i class="fas fa-mouse-pointer"></i> ${tries} tries`;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
@ -177,7 +182,9 @@ function finishGame(username) {
|
|||
finalTimeSpan.textContent = `${Math.floor(totalSeconds)} seconds`;
|
||||
|
||||
scoresController.setUserTime(username, totalSeconds);
|
||||
|
||||
|
||||
tries = 0;
|
||||
|
||||
imgsGrid.classList.add("hide");
|
||||
congratsDiv.classList.remove("hide");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -233,9 +233,10 @@ strong {
|
|||
width: 35px;
|
||||
}
|
||||
|
||||
.fa-stopwatch {
|
||||
.fa-stopwatch, .fa-mouse-pointer {
|
||||
font-size: 18px;
|
||||
margin-right: 3px;
|
||||
color: hsla(208, 80%, 50%, 0.3);
|
||||
}
|
||||
|
||||
@media (max-height: 865px) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue