跳至内容
主题
餐厅
菜单
主题
餐厅
搜索
搜索
烹饪大师的 6 道必尝菜肴
各位美食爱好者,大家好!今天,我们将开始一次美食探险,灵感来自热门电视节目 "生活大师"。
阅读更多 "
亚历克斯
1 月 11, 2024
庆州最好的 7 家当地餐馆
美食爱好者们,你们好!今天,我很高兴为计划前往庆州的朋友们分享一份特别的礼物。作为您的
阅读更多 "
亚历克斯
1 月 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; 显示项目(索引); });