과천과 강남의 미각을 유혹하는 7가지 음식 명소

과천 라온 식탁

평소보다 업그레이드하고 싶으신가요?[SEO: 한국 맛집 가이드] 최고의 음식을 찾아 떠나는 미식 여행을 떠나보세요.

자세히보기"
ko_KRKorean
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); });