跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
探索大邱的热门咖啡馆,品尝令人难忘的咖啡
加入我们的欢乐之旅,游览大邱最热门的咖啡馆,为咖啡爱好者和甜点爱好者带来难忘的体验。
阅读更多 "
桑迪
5 月 16, 2024
页次
1
页次
2
页次
3
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; 显示项目(索引); });