跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
品尝韩国最佳时令美食:顶级海鲜餐厅及其他
踏上韩国美食探险之旅,品尝美味可口的时令佳肴,从鲜美多汁的海鲜到美味可口的佳肴,让您流连忘返。
阅读更多 "
桑迪
9 月 11, 2024
探索仁川的美食风情:品尝正宗韩国料理的最佳地点
在仁川迷人的街道上展开一次美食探险,发掘韩国美食中隐藏的瑰宝
阅读更多 "
桑迪
9 月 11, 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; 显示项目(索引); });