-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhi.js
54 lines (42 loc) · 1.45 KB
/
hi.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
53
54
const cards = document.querySelectorAll('.card');
const prevButton = document.querySelector('.prev');
const nextButton = document.querySelector('.next');
let currentIndex = 1;
function updateCards() {
const totalCards = cards.length;
cards.forEach((card) => {
card.classList.remove('active-card', 'left-card', 'right-card', 'expanded');
});
const leftIndex = (currentIndex - 1 + totalCards) % totalCards;
const rightIndex = (currentIndex + 1) % totalCards;
cards[leftIndex].classList.add('left-card');
cards[currentIndex].classList.add('active-card', 'expanded');
cards[rightIndex].classList.add('right-card');
}
function handleCardClick(index) {
currentIndex = index;
updateCards();
}
cards.forEach((card, index) => {
card.addEventListener('click', () => {
handleCardClick(index);
});
});
nextButton.addEventListener('click', () => {
currentIndex = (currentIndex + 1) % cards.length;
updateCards();
});
prevButton.addEventListener('click', () => {
currentIndex = (currentIndex - 1 + cards.length) % cards.length;
updateCards();
});
updateCards();
document.querySelectorAll('.read-more').forEach(button => {
button.addEventListener('click', function(event) {
event.preventDefault();
document.body.classList.add('transitioning');
setTimeout(() => {
window.location.href = this.getAttribute('href');
}, 1000);
});
});