-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaScript.js
More file actions
74 lines (60 loc) · 2.1 KB
/
Copy pathJavaScript.js
File metadata and controls
74 lines (60 loc) · 2.1 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
/* script.js */
document.addEventListener('DOMContentLoaded', () => {
const slides = document.querySelectorAll('.slide');
const thumbnails = document.querySelectorAll('.thumb');
const caption = document.querySelector('.caption');
const description = document.querySelector('.description');
const prevButton = document.querySelector('.prev');
const nextButton = document.querySelector('.next');
let currentIndex = 0;
let interval;
const showSlide = (index) => {
slides.forEach((slide, i) => {
slide.classList.remove('active');
thumbnails[i].classList.remove('active');
});
slides[index].classList.add('active');
thumbnails[index].classList.add('active');
const currentSlide = slides[index];
caption.textContent = currentSlide.dataset.caption;
description.textContent = currentSlide.dataset.description;
clearInterval(interval);
autoSlide();
};
const nextSlide = () => {
currentIndex = (currentIndex + 1) % slides.length;
showSlide(currentIndex);
};
const prevSlide = () => {
currentIndex = (currentIndex - 1 + slides.length) % slides.length;
showSlide(currentIndex);
};
thumbnails.forEach((thumb, index) => {
thumb.addEventListener('click', () => {
currentIndex = index;
showSlide(index);
});
});
prevButton.addEventListener('click', prevSlide);
nextButton.addEventListener('click', nextSlide);
const autoSlide = () => {
interval = setInterval(nextSlide, 3000);
};
const enableSwipe = () => {
let startX;
document.addEventListener('touchstart', (e) => {
startX = e.touches[0].clientX;
});
document.addEventListener('touchend', (e) => {
const endX = e.changedTouches[0].clientX;
if (startX - endX > 50) {
nextSlide();
} else if (endX - startX > 50) {
prevSlide();
}
});
};
showSlide(currentIndex);
enableSwipe();
autoSlide();
});