跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
在抱川品尝韩国美食:4 大精选
召唤所有美食家,今天我们将围绕这座永不停歇的城市中的四家必去餐厅展开一次美食探险之旅
阅读更多 "
亚历克斯
4 月 22, 2024
页次
1
页次
2
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; 显示项目(索引); });