Turn the hole screen black till hovermouse
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/491238/1351473/overlay2078.js
document.addEventListener('DOMContentLoaded', function () {
let overlay = document.getElementById('pageOverlay');
overlay.style.position = 'sticky';
overlay.style.top = '0';
overlay.style.left = '0';
overlay.style.width = '100vw';
overlay.style.height = '100%';
overlay.style.backgroundColor = 'black';
overlay.style.zIndex = '400';
document.body.addEventListener('mouseover', function () {
if (overlay) {
overlay.style.display = 'none';
}
});
document.addEventListener('touchstart', function () {
if (overlay) {
overlay.style.display = 'none';
}
});
document.addEventListener('mouseleave', function () {
if (overlay) {
overlay.style.display = 'block';
}
});
});