韩国徽标

隐私政策

A.本网站由 Vouves 及其合作伙伴(统称为 "我们 "或 "我们的")运营,他们的注册网址为:https://www.koreavisit.kr/ 和

阅读更多 "
韩国徽标

COOKIE 政策

1.关于 Cookie1.1.您访问的大多数网站都会使用 Cookie,以便通过以下方式改善您的用户体验

阅读更多 "
韩国徽标

使用条款

A.本网站 https://www.koreavisit.kr/(以下简称 "网站")和/或与本网站链接的任何其他集团网站(以下简称 "集团实体")包含以下信息

阅读更多 "
zh_CNChinese
const carouselSlide = document.querySelector('.carousel-slide'); const items = document.querySelectorAll('.carousel-item'); const prevButton = document.querySelector('.carousel-prev'); const nextButton = document.querySelector('.carousel-next'); 让 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; 显示项目(索引); });