コンテンツへスキップ
テーマ
レストラン
メニュー
テーマ
レストラン
検索
検索
韓国の旬を味わう:人気のシーフード・スポットほか
ジューシーなシーフードから香ばしい珍味まで、韓国の美味しい旬の食材を使った食の冒険に出かけよう。
続きを読む "
サンティ
9月 11, 2024
仁川のフードシーンを探訪:本場の韓国料理が味わえる人気スポット
仁川の魅力的な通りを散策し、韓国料理の隠れた魅力を発見する食の冒険に出かけよう。
続きを読む "
サンティ
9月 11, 2024
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); });