-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
52 lines (44 loc) · 1.06 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
51
52
function makebubble(){
let bubble="";
for(let i=0;i<=137;i++){
let rn=Math.floor(Math.random()*10);
bubble += `<div class="bubble">${rn}</div>`;
}
document.querySelector(".pbotm").innerHTML=bubble;
};
makebubble();
let time=60;
function Timer(){
let timerint=setInterval(() => {
if(time>0){
time--;
document.querySelector("#timer").textContent=time;
}
else{
clearInterval(timerint);
document.querySelector(".pbotm").innerHTML=`<h1>Game over</h1>`;
}
},1000);
}
Timer();
let hitv;
function refresh(){
hitv=Math.floor(Math.random()*10);
document.querySelector("#hitvalue").textContent=hitv;
}
refresh();
let score=0;
function increaseScore(){
score+=10;
document.querySelector("#score").textContent=score;
}
// increaseScore();
let parent=document.querySelector(".pbotm");
parent.addEventListener("click",function(dets){
let num=Number(dets.target.textContent);
if(num===hitv){
increaseScore();
makebubble();
refresh();
}
})