跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
韩国最佳章鱼菜肴:Heeya 烧烤章鱼、Chunho 章鱼巷
踏上美食之旅,探索美味的韩国美食世界。
阅读更多 "
克里斯
6 月 29, 2024
首尔咖啡之旅:从丰富的混合咖啡到独特的冲泡咖啡
踏上首尔的咖啡探险之旅,在 Cafe C、콩당콩당 和 헬카페品尝各种美味咖啡。
阅读更多 "
克里斯
6 月 29, 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; 显示项目(索引); });