document.onkeydown =
document.onkeyup =
document.onkeypress =
function (event) {
var e =
event ||
window.event ||
arguments.callee.caller.arguments[0];
if (e && e.keyCode == 123) {
e.returnValue = false;
return false;
}
};
var threshold = 160; // 打開控制台的寬或高閾值
// 每秒檢查一次
window.setInterval(function () {
if (
window.outerWidth - window.innerWidth > threshold ||
window.outerHeight - window.innerHeight > threshold
) {
window.location.href = "https://i.cnblogs.com/";
}
}, 1e3);