跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
首尔的塔可时间美食之旅
欢迎来到墨西哥卷爱好者的韩国旅游终极指南!今天,我们将踏上美食之旅,探索韩国的一些美食。
阅读更多 "
克里斯
2 月 21, 2024
首尔艺术博物馆附近的美味佳肴
在欣赏了美丽的艺术之后,您需要品尝美丽的味道。您是否想过韩国菜的美丽味道?潜水
阅读更多 "
亚历克斯
2 月 21, 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; 显示项目(索引); });