-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
31 lines (23 loc) · 933 Bytes
/
index.js
File metadata and controls
31 lines (23 loc) · 933 Bytes
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
//Methods for the first dice
var randomNumber1=Math.random();
randomNumber1=Math.floor(randomNumber1*6)+1;
var randomDiceImage1="images/dice"+randomNumber1+".png";
var image1=document.querySelectorAll("img")[0];
image1.setAttribute("src",randomDiceImage1);
//Methods for the second dice
var randomNumber2=Math.random();
randomNumber2=Math.floor(randomNumber2*6)+1;
var randomDiceImage2="images/dice"+randomNumber2+".png";
var image2=document.querySelectorAll("img")[1];
image2.setAttribute("src",randomDiceImage2);
if(randomNumber1>randomNumber2){
document.querySelector("h1").innerHTML="Player 1 Wins!";
}else if(randomNumber1<randomNumber2){
document.querySelector("h1").innerHTML="Player 2 Wins!";
}else{
document.querySelector("h1").innerHTML="Draw..!";
}
const ref_but = document.querySelector('#refresh_button')
ref_but.addEventListener('click', (e)=>{
location.reload()
})