콘텐츠로 건너뛰기
테마
레스토랑
메뉴
테마
레스토랑
찾다
찾다
한국의 맛있는 수제 버거
최고의 현지 수제 버거를 소개하는 한국식 홈메이드 버거의 세계에 빠져보세요.
자세히보기"
맨디
6월 18, 2024
페이지
1
페이지
2
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); });