-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
77 lines (66 loc) · 2.26 KB
/
Copy pathscript.js
File metadata and controls
77 lines (66 loc) · 2.26 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
let slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
let slideInterval;
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("slides");
let dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = 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[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
function plusSlides(n) {
showSlides(slideIndex += n);
}
function startSlideshow() {
slideInterval = setInterval(function() {
showSlides(slideIndex += 1);
}, 3000); // Change 3000 to 3000 milliseconds (3 seconds)
}
function stopSlideshow() {
clearInterval(slideInterval);
}
window.onload = startSlideshow;
window.onbeforeunload = stopSlideshow;
document.querySelector('.next').addEventListener('click', function() {
plusSlides(1);
});
document.querySelector('.previous').addEventListener('click', function() {
plusSlides(-1);
});
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("slides");
let dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = 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[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
let showButton = document.getElementById("up-button");
window.onscroll = function() {
if (document.body.scrollTop > 0 || document.documentElement.scrollTop > 0) {
showButton.style.display = "block";
} else {
showButton.style.display = "none";
}
};