跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
韩国最棒的酒吧和令人惊叹的美景
欢迎阅读我的最新博文,在这里,我将带您踏上一段浸满威士忌的韩国隐秘之旅。从
阅读更多 "
克里斯
1 月 10, 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; 显示项目(索引); });