《背刺》优化版 中文版背刺(芒刺在身),智乐出品必属精品,复仇在即,多加留心! 我的名字叫做Henry Blake,我曾经在大英帝国的皇家海军中服役,我为此深感自豪。但是现在,我成了个家破人亡,心中充满了复仇怒火的人。在前段时间,系列的事件相继发生在我的身上:被人陷害、被朋友出卖、被我曾经为之自豪的帝国所监禁、连我的未婚妻也被别人夺走了……我现在别无所求,只想着如何复仇!




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’;
}
});
上一篇:战地世界(汉化解锁全武器)
下一篇:安魂曲(免谷歌)
