跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
品尝独特的韩国烧烤
加入我们的美食之旅,探索最近在活力四射的首尔崭露头角的杰出韩国烧烤餐厅。
阅读更多 "
克里斯
4 月 11, 2024
页次
1
页次
2
页次
3
页次
4
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; 显示项目(索引); });