跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
首尔之外隐秘的面包咖啡馆
作为专门向外国游客介绍韩国人气美食的美食博客专家,我很高兴能与大家分享以下内容
阅读更多 "
克里斯
1 月 15, 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; 显示项目(索引); });