-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.js
97 lines (74 loc) · 2.91 KB
/
game.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
//? 1 ile 100 aerasinda bir sayi tut
//? variables tanimlama
//? Check butonuna basildiginda kontrolleri yap
//! Eger inputtan tahmin girilmediyse kullaniciya uyari ver
//! Eger rastgele sayi esitse inputan alinan sayidegerine
//? tebrikler bildiniz
//? sakli sayi =görünür
//! eger rastgelesayi esit degilse inputtan alinan degere
//? tahmin hakkini azalmali
//! eger tahmin hakk >0 ise --------->
//! inputtan alinan deger > rastgele sayidan büyük ise-> tahminini azalt : tahminini artir
//! eger tahmin hakki < 0 degilse
//? Üzgünüm kaybettiniz
//? tekrar tusuna basinca oyunu basa al( tahmin hakkini düzelt,
//? tekrar rastgele sayi üretmeli,kontrol tusunu tekrar aktif yapmaliyiz,
//? sakli sayiya soru isareti atamaliyiz,tahmin inputuna bos deger atamaliyiz,mesaji eski haline almaliyiz)
let randomNum = Math.floor(Math.random() * 100 + 1)
console.log(randomNum);
let hak = 5;
const kontrolBtn = document.querySelector(".kontrol-btn")
const tahmin = document.querySelector(".tahmin-input")
const message = document.querySelector(".msg")
const sakliNum = document.querySelector(".sakli-number")
let tahminHakki = document.querySelector(".hak")
const tekrarButonu = document.querySelector(".tekrar-btn")
let hakSayisi = document.querySelector(".hak")
kontrolBtn.addEventListener('click', () => {
let tahminNum = Number(tahmin.value)
if(!tahminNum){
message.innerText = "1 ile 100 arasi bir sayi giriniz."
}
else if(randomNum === tahminNum){
message.innerText = "Congratulations, You Won 🤩";
message.style.color = "green";
message.style.fontSize = "50px";
sakliNum.textContent = randomNum
kontrolBtn.disabled = true;
}
else{
hak--;
if(hak > 0){
tahminNum > randomNum ? (message.innerHTML = `<i class="fa-solid fa-arrow-trend-down fa-2x"></i> Decrease`) : (message.innerHTML = `<i class="fa-solid fa-arrow-trend-up fa-2x" ></i> Increase`);
}
else{
if(hak === 0){
kontrolBtn.disabled = true;
}
message.innerText = "You Lost 😞";
message.style.color = "red";
message.style.fontSize = "50px";
sakliNum.textContent = randomNum
}
tahminHakki.innerText -= 1;
}
tahmin.value = ""
}
)
tekrarButonu.addEventListener('click', () => {
randomNum =
hak = 5;
hakSayisi.innerText = hak;
randomNum = Math.floor(Math.random() * 100 + 1)
console.log(randomNum);
kontrolBtn.disabled = false;
sakliNum.textContent = "?"
tahmin.value = ""
})
const inputPlace = document.getElementById("input")
inputPlace.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
event.preventDefault();
kontrolBtn.click();
}
});