-
Notifications
You must be signed in to change notification settings - Fork 24
/
script.js
50 lines (50 loc) · 1.51 KB
/
script.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
const spans = document.querySelectorAll('#player span');
const pc = document.querySelector('#pc');
const msg = document.querySelector('p');
var target;
const clicked = (event) => {
if (!document.body.classList.contains('noclick')) {
document.body.classList.add('noclick');
target = event.target;
for (var span of spans) {
if (target !== span) {
span.classList.add('hidden');
}
}
var random = parseInt(Math.random() * 3);
pc.textContent = spans[random].textContent;
pc.dataset.id = spans[random].id;
pc.classList.remove('hidden');
setTimeout(results, 250);
}
};
const results = function () {
if (target.id == pc.dataset.id) {
msg.textContent = 'Draw';
}
if (target.id == 'rock' && pc.dataset.id == 'paper' ||
target.id == 'paper' && pc.dataset.id == 'scissor'||
target.id == 'scissor' && pc.dataset.id == 'rock') {
msg.textContent = 'You lost :(';
}
if (target.id == 'rock' && pc.dataset.id == 'scissor' ||
target.id == 'paper' && pc.dataset.id == 'rock' ||
target.id == 'scissor' && pc.dataset.id == 'paper') {
msg.textContent = 'You Win!';
}
msg.classList.remove('hidden');
setTimeout(reset, 1500);
}
const reset = function () {
for (var span of spans) {
span.classList.remove('hidden');
}
msg.classList.add('hidden');
pc.classList.add('hidden');
setTimeout(function () {
document.body.classList.remove('noclick');
}, 500);
}
for (var span of spans) {
span.addEventListener('click', clicked);
}