koreavisit logo

Privacy Policy

A. This website is operated by Vouves  and their partners (collectively, “we,” “us” or “our”), who are registered athttps://www.koreavisit.kr/ and

Read More »
koreavisit logo

COOKIE POLICY

1. About Cookies1.1. Most websites you visit will use cookies in order to improve your user experience by enabling that

Read More »
en_USEnglish
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); });