跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
首尔一站式购物和餐饮天堂
欢迎全球旅行者来到购物与美食完美结合的首尔!在本博客中,我们将探索以舒适为中心的终极美食餐厅
阅读更多 "
克里斯
1 月 12, 2024
Chinese
English
Korean
Japanese
Spanish
Chinese
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; 显示项目(索引); });