跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
探索最美味的茶点独特甜品咖啡馆之旅
欢迎来到我们精心策划的首尔最令人愉悦的茶馆之旅!在本博客中,我们将展示一系列隐秘的
阅读更多 "
克里斯
12 月 19, 2023
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; 显示项目(索引); });