코리아비지트 로고

이용약관

A. 본 사이트, https://www.koreavisit.kr/("사이트") 및/또는 본 사이트에서 링크된 기타 그룹 웹사이트("그룹 엔티티")에는 다음 정보가 포함되어 있습니다.

자세히보기"
ko_KRKorean
const carouselSlide = document.querySelector('.carousel-slide'); const items = document.querySelectorAll('.carousel-item'); const prevButton = document.querySelector('.carousel-prev'); const nextButton = document.querySelector('.carousel-next'); let index = 0; function showItem(index) { carouselSlide.style.transform = `translateX(${-index * 100}%)`; } nextButton.addEventListener('click', () => {}) index = (index + 1) % items.length; showItem(index); }); prevButton.addEventListener('click', () => {. index = (index - 1 + items.length) % items.length; showItem(index); });