콘텐츠로 건너뛰기
테마
레스토랑
메뉴
테마
레스토랑
찾다
찾다
서울 함흥식 냉면 맛집
음식 애호가 여러분, 그리고 해외 방문객 여러분 안녕하세요! 오늘의 미식 모험은 서울의 중심부를 탐험하는 것입니다.
자세히보기"
크리스
1월 4, 2024
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); });