(function() {
const target = document.querySelector('video') || document.body;
target.style.cursor = 'none'; // курсор станет невидимым при активации
function lock() {
target.requestPointerLock?.() || target.mozRequestPointerLock?.() || target.webkitRequestPointerLock?.();
}
target.addEventListener('click', lock, { once: true });
document.addEventListener('pointerlockchange', () => {
if (document.pointerLockElement === target) {
target.style.cursor = 'none';
} else {
target.style.cursor = '';
}
});
console.log('Скрипт активирован: клик по игровой области включит захват курсора.');
})();