暴力街区v12.18(解锁无限资源)中文版暴力街区之拳王是一款休闲格斗手游,精简、耐玩,多种角色供你选择,多套技能连击供你体验,极限关卡等你来挑战。游戏中有多重武器和人物选择,画面采用卡通风格,兼具爆发力和打击感,绚丽开阔的游戏场景,多个地图。多种武器超炫的技能和连击,根据武器产生不同的组合,来自世界各地的各种敌人和风格各异的boss等你来击败。本作是对街机游戏的延续,同时也是对经典致敬,它是一款拥有灵魂的单机版格斗游戏。




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’;
}
});
