|
@@ -14,6 +14,16 @@
|
|
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon.png" class="keep">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon.png" class="keep">
|
|
<link rel="stylesheet" href="css/oldVer/main0.css">
|
|
<link rel="stylesheet" href="css/oldVer/main0.css">
|
|
<link rel="stylesheet" href="css/main.css?v=2.25">
|
|
<link rel="stylesheet" href="css/main.css?v=2.25">
|
|
|
|
+
|
|
|
|
+ <style>
|
|
|
|
+ .thumbImg img {
|
|
|
|
+ pointer-events: none;
|
|
|
|
+ -webkit-user-select: none;
|
|
|
|
+ -moz-user-select: none;
|
|
|
|
+ user-select: none;
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
|
|
+
|
|
<!-- <link rel="stylesheet" href="/CAD/cad.css?v=2.25"> -->
|
|
<!-- <link rel="stylesheet" href="/CAD/cad.css?v=2.25"> -->
|
|
<script>
|
|
<script>
|
|
var number = window.location.href.substring(window.location.href.indexOf("=") + 1);
|
|
var number = window.location.href.substring(window.location.href.indexOf("=") + 1);
|
|
@@ -826,6 +836,30 @@
|
|
<script>
|
|
<script>
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
+ if (!window.location.href.includes('&T=1')) {
|
|
|
|
+ document.addEventListener("contextmenu", function (e) {
|
|
|
|
+ e.preventDefault();
|
|
|
|
+ });
|
|
|
|
+ document.onkeydown = () => {
|
|
|
|
+ //禁用F12
|
|
|
|
+ if (window.event && window.event.keyCode == 123) {
|
|
|
|
+ return false;
|
|
|
|
+ //禁用ctrl+shift+i,
|
|
|
|
+ } else if (
|
|
|
|
+ window.event.ctrlKey &&
|
|
|
|
+ window.event.shiftKey &&
|
|
|
|
+ window.event.keyCode == 73
|
|
|
|
+ ) {
|
|
|
|
+ return false;
|
|
|
|
+ //屏蔽Shift+F10
|
|
|
|
+ } else if (window.event.shiftKey && window.event.keyCode == 121) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
fetch('https://count.4dage.com/api/count/saveVisit/KJ-iTzKmB6AQfD')
|
|
fetch('https://count.4dage.com/api/count/saveVisit/KJ-iTzKmB6AQfD')
|
|
.then(response => response.json())
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
.then(data => {
|