콘텐츠로 건너뛰기
테마
레스토랑
메뉴
테마
레스토랑
찾다
찾다
여주 인기 맛집 베스트 5
여주에는 여주 컨트리클럽, 헤슬러 나인브릿지 CC, 금강 등 골프 라운드를 즐길 수 있는 곳이 많습니다.
자세히보기"
제시
2024년 1월 17일
Korean
English
Japanese
Chinese
Spanish
Korean
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); });