oddhtml / script.js
chohj06ms's picture
Update script.js
757a69e verified
raw
history blame
No virus
1.42 kB
let currentIndex = 1;
let startTouchPosition = 0;
let endTouchPosition = 0;
const slider = document.querySelector('.slider');
const totalSlides = slider.children.length;
// ํŽ˜์ด์ง€ ๋กœ๋“œ ์‹œ ๋‘ ๋ฒˆ์งธ ์Šฌ๋ผ์ด๋“œ๋กœ ์ด๋™
document.addEventListener('DOMContentLoaded', () => {
moveToSlide(currentIndex); // ์ดˆ๊ธฐ ์œ„์น˜ ์„ค์ •
});
function moveToSlide(n) {
let newSlidePosition = (n * -100) / totalSlides;
slider.style.transform = `translateX(${newSlidePosition}%)`;
currentIndex = n;
}
// ํ‚ค๋ณด๋“œ ์ด๋ฒคํŠธ
document.addEventListener('keydown', (e) => {
if (e.key === 'ArrowLeft') {
if (currentIndex > 0) {
moveToSlide(currentIndex - 1);
}
} else if (e.key === 'ArrowRight') {
if (currentIndex < totalSlides - 1) {
moveToSlide(currentIndex + 1);
}
}
});
// ํ„ฐ์น˜ ์ด๋ฒคํŠธ ์‹œ์ž‘
slider.addEventListener('touchstart', (e) => {
startTouchPosition = e.touches[0].clientX;
});
// ํ„ฐ์น˜ ์ด๋ฒคํŠธ ๋
slider.addEventListener('touchend', (e) => {
endTouchPosition = e.changedTouches[0].clientX;
handleTouchMove();
});
function handleTouchMove() {
if (startTouchPosition - endTouchPosition > 50 && currentIndex < totalSlides - 1) {
// ์˜ค๋ฅธ์ชฝ์œผ๋กœ ์Šฌ๋ผ์ด๋“œ
moveToSlide(currentIndex + 1);
} else if (endTouchPosition - startTouchPosition > 50 && currentIndex > 0) {
// ์™ผ์ชฝ์œผ๋กœ ์Šฌ๋ผ์ด๋“œ
moveToSlide(currentIndex - 1);
}
}