콘텐츠로 건너뛰기
테마
레스토랑
메뉴
테마
레스토랑
찾다
찾다
서울을 넘어: 빵이 있는 숨은 보석 카페
외국인 관광객들에게 한국의 인기 맛집을 소개하는 음식 블로그 전문가로서, 이번 기회를 통해
자세히보기"
크리스
1월 15, 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); });