深夜的烧烤店_1.70(免广告获取奖励)中文版《深夜的烧烤店》是一款模拟经营类休闲益智游戏,在不那么繁华的小城,开一家属于自己的烧烤店。自己制定菜单;自己调配调料;自己决定店铺的装潢。可以雇佣员工负责店内的各项工作,自己忙里偷闲听听顾客们闲话家常。感受休闲、简单且有趣的放置经营小游戏!




const modal = document.getElementById(‘imageModal’);
const closeModal = document.getElementById(‘closeModal’);
const enlargedImg = document.getElementById(‘enlargedImg’);
const thumbnails = document.querySelectorAll(‘.img-thumbnail’);
thumbnails.forEach(thumbnail => {
thumbnail.addEventListener(‘click’, () => {
modal.classList.remove(‘hidden’);
enlargedImg.src = thumbnail.src;
enlargedImg.alt = thumbnail.alt;
document.body.style.overflow = ‘hidden’;
});
});
closeModal.addEventListener(‘click’, () => {
modal.classList.add(‘hidden’);
document.body.style.overflow = ‘auto’;
});
modal.addEventListener(‘click’, (e) => {
if (e.target === modal) {
modal.classList.add(‘hidden’);
document.body.style.overflow = ‘auto’;
}
});
document.addEventListener(‘keydown’, (e) => {
if (e.key === ‘Escape’ && !modal.classList.contains(‘hidden’)) {
modal.classList.add(‘hidden’);
document.body.style.overflow = ‘auto’;
}
});
上一篇:时代的黎明
下一篇:卡皮巴拉幸存者(免广告获取奖励)
