시그니처 요리를 소개하는 콜라주

속초의 비밀 5대 맛집

요리 탐험가 여러분, 안녕하세요! 속초에서 여름 휴가 계획을 시작할 준비가 되셨나요? 다음과 함께 미식 여행을 떠나보세요.

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