Koreavisitロゴ

プライバシーポリシー

A.本ウェブサイトは、https://www.koreavisit.kr/、Vouvesおよびそのパートナー(以下、総称して「当社」または「弊社」)によって運営されています。

続きを読む "
Koreavisitロゴ

クッキーポリシー

1.クッキーについて1.1.ほとんどのウェブサイトでは、お客様の利便性を向上させるためにクッキーを使用しています。

続きを読む "
jaJapanese
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; 関数 showItem(index) { carouselSlide.style.transform = `translateX(${-index * 100}%)`; } nextButton.addEventListener('クリック', () => { index = (index + 1) % items.length; showItem(index); }); prevButton.addEventListener('クリック', () => { { index = (index - 1 + items.length) index = (index - 1 + items.length) % items.length; showItem(index); });