콘텐츠로 건너뛰기
테마
레스토랑
메뉴
테마
레스토랑
찾다
찾다
서퍼들이 사랑하는 양양 BEST 맛집
한국의 캘리포니아로 불리는 서퍼들의 성지, 양양 해변을 방문할 계획이신가요? 양양
자세히보기"
제시
2024년 1월 30일
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); });