-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
57 lines (57 loc) · 1.51 KB
/
main.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
$(document).ready(function () {
$(".startBtn").click(function () {
$(".intro").fadeOut("slow");
$(".match").fadeIn("slow");
});
let pScore = 0,
cScore = 0,
winnerScreen = $(".winner");
function updateScore() {
$(".player-score p").text(pScore);
$(".computer-score p").text(cScore);
}
$(".options button").click(function () {
let options = ["rock", "paper", "scissors"],
rndm = Math.floor(Math.random() * 3),
pSelect = this.value,
cSelect = options[rndm];
$(".player-hand").attr("src", `assets/${this.value}.png`);
$(".computer-hand").attr("src", `assets/${cSelect}.png`);
if (pSelect === cSelect) {
return winnerScreen.text("Do'stlik g'alaba qozondi");
}
if (pSelect === "rock") {
if (cSelect === "scissors") {
winnerScreen.text("O'yinchi yutdi");
pScore++;
updateScore();
} else {
winnerScreen.text("Kompyuter yutdi");
cScore++;
updateScore();
}
}
if (pSelect === "paper") {
if (cSelect === "rock") {
winnerScreen.text("O'yinchi yutdi");
pScore++;
updateScore();
} else {
winnerScreen.text("Kompyuter yutdi");
cScore++;
updateScore();
}
}
if (pSelect === "scissors") {
if (cSelect === "paper") {
winnerScreen.text("O'yinchi yutdi");
pScore++;
updateScore();
} else {
winnerScreen.text("Kompyuter yutdi");
cScore++;
updateScore();
}
}
});
});