小猪佩奇运动会 V1.3.4 中文版佩奇和她的朋友们去参加运动会,而他们也邀您一起加入!这部电视动画的粉丝们一定会喜爱这个以运动会为主题的应用程式。此应用鼓励学龄前的儿童发掘佩奇的欢乐世界。应用里有充满乐趣的游戏,有孩子喜爱的卡通角色、歌曲和音效。




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’;
}
});
上一篇:夜幕王国边境塔防(内置菜单版)
下一篇:真实驾驶卡车模拟器(steam移植)
