steam移植手游-暴徒猎手V0.10 横版射击 支持手柄 中文版《暴徒猎手(HUNTDOWN)》是一款复古风格的像素横版动作射击游戏。游戏中的城市被集团和暴力分子掌控,疲软的当局对混乱的秩序无计可施,现在只有赏金猎人能拯救这座城市了。向着他们倾泄你的怒火,净化这座城市吧,将这些渣滓一网打尽。




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’;
}
});
上一篇:地牢爬行者2(货币不减反增)
下一篇:超级鸡马(steam移植)
