-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
34 lines (28 loc) · 896 Bytes
/
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
const slideIndex = [1, 2, 3, 4, 5];
let currentSlide = 1;
function showSlides(n) {
let i;
const slides = document.getElementsByClassName("mySlides");
const dots = document.getElementsByClassName("dot");
if (n > slides.length) {currentSlide = 1}
if (n < 1) {currentSlide = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[currentSlide - 1].style.display = "block";
dots[currentSlide - 1].className += " active";
}
// Function to advance the slide
function plusSlides(n) {
showSlides(currentSlide += n);
}
// Function to show a specific slide based on a dot click
function currentSlide(n) {
currentSlide = n;
showSlides(currentSlide);
}
// Start the slideshow at the first slide
showSlides(currentSlide);