コンテンツへスキップ
テーマ
レストラン
メニュー
テーマ
レストラン
検索
検索
ポジティブ・ソウルの森、パルマ、カカオダダ
ポジティヴ・ソウルフォレスト、パルマ、カカオダダで、最高の韓国料理を味わう食の旅に出かけよう。
続きを読む "
クリス
5月 31, 2024
ページ
1
ページ
2
Japanese
English
Korean
Chinese
Spanish
Japanese
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); });