跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
最受冲浪者喜爱的阳阳最佳餐厅
阳阳海水浴场是冲浪爱好者的圣地,被称为韩国的加利福尼亚,您是否计划前往阳阳海水浴场?阳阳
阅读更多 "
杰西
1 月 30, 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; 显示项目(索引); });