Added sounds but buggy

This commit is contained in:
2020-03-15 20:56:00 +01:00
parent 8e6c5b4f67
commit a9bfbe4f95
5 changed files with 56 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ var level = newPlayground * newPlayground;
var difficulty = -1;
var showcontent = false; // show numbers inside the cards
// Game settings end
var allow_click = 0;
var allow_click = 0;
var play_array = [];
var anim = 0;
var y = 1;
@@ -51,7 +51,7 @@ function round_value() {
document.getElementById("round").innerHTML = round_values;
}
function animation() { //Animations, shows what cards you click on
function animation() { //Animations, shows what cards you click on. Works like a loop. SetTimout cant be used in normal loop
setTimeout(function () {
$("#" + play_array[anim]).addClass('animations')
anim++;
@@ -104,7 +104,7 @@ function calc_difficulty() {
} else {
level = level + 1;
}
difficulty = (35 / 100) * level + difficulty; //calc the difficulty to scale with the level
difficulty = (20 / 100) * level + difficulty; //calc the difficulty to scale with the level
difficulty = Math.round(difficulty) // Makes the difficulty value a integer
}
@@ -120,7 +120,7 @@ function make_playground() {
for (i = 0; i < newPlayground; i++) { //Creates a new div for each loop wth the attributes and content set below.
card_ids++;
var div = document.createElement('div');
div.setAttribute('class', 'card');
div.setAttribute('class', 'card noSelect');
div.setAttribute('id', card_ids);
div.setAttribute('onClick', 'reply_click(this.id)'); // add an onClick event to the div that sends the id of it to the funcition reply_click()
document.getElementById('card-row' + y).appendChild(div);