-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
44 lines (39 loc) · 1.1 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
const progress = document.getElementById('progress')
const next = document.getElementById('next')
const prev = document.getElementById('prev')
const circle = document.querySelectorAll('.circle')
let currentActive=1
next.addEventListener('click', () =>{
currentActive++
if(currentActive >circle.length){
currentActive = circle.length
}
update()
})
prev.addEventListener('click', () =>{
currentActive--
if(currentActive <1){
currentActive = 1
}
update()
})
function update(){
circle.forEach((circle,idx)=>{
if(idx < currentActive){
circle.classList.add('active')
}else{
circle.classList.remove('active')
}
})
const actives= document.querySelectorAll('.active')
progress.style.width =(actives.length -1)/(circle.length -1)*100 +'%'
if(currentActive===1){
prev.disabled=true
}else if (currentActive===circle.length){
next.disabled=true
}
else{
prev.disabled=false
next.disabled=false
}
}