let modalShown = false; // 标志变量,用于跟踪模态框是否已经显示 let deleteAlertShown = false; // 标志变量,用于跟踪删除键警告是否已经显示 document.onkeydown = function(event) { if (event && event.keyCode == 123) { if (!modalShown) { // 如果模态框未显示 showAlert("F12被禁用"); modalShown = true; // 设置标志变量为true,表示模态框已显示 } event.preventDefault(); } if (event && event.keyCode == 13) { event.keyCode = 505; } if (event && event.keyCode == 8) { if (!deleteAlertShown) { // 如果删除键警告未显示 showAlert("请使用Del键进行字符的删除操作!"); deleteAlertShown = true; // 设置标志变量为true,表示删除键警告已显示 } event.preventDefault(); } }; function showAlert(message) { // 创建模态框容器 var modal = document.createElement('div'); modal.style.display = 'block'; modal.style.position = 'fixed'; modal.style.zIndex = '1000'; modal.style.left = '0'; modal.style.top = '0'; modal.style.width = '100%'; modal.style.height = '100%'; modal.style.backgroundColor = 'rgba(0,0,0,0.7)'; modal.style.overflow = 'auto'; modal.style.fontFamily = 'Arial, sans-serif'; modal.style.transition = 'opacity 1s ease'; // 添加透明度过渡效果 modal.style.opacity = '1'; // 初始透明度为1 // 创建模态框内容 var modalContent = document.createElement('div'); modalContent.style.background = 'linear-gradient(90deg, #b828d1, #0085ff)'; modalContent.style.margin = '15% auto'; modalContent.style.padding = '20px'; modalContent.style.borderRadius = '30px'; modalContent.style.width = '80%'; modalContent.style.maxWidth = '600px'; modalContent.style.textAlign = 'center'; modalContent.style.boxShadow = '0 4px 16px rgba(0,0,0,0.2)'; // 添加阴影边框 modalContent.style.position = 'relative'; modalContent.style.transition = 'opacity 1s ease'; // 添加透明度过渡效果 modalContent.style.opacity = '1'; // 初始透明度为1 // 创建关闭按钮 var closeBtn = document.createElement('span'); closeBtn.innerHTML = '×'; closeBtn.style.position = 'absolute'; closeBtn.style.right = '15px'; closeBtn.style.top = '10px'; closeBtn.style.fontSize = '40px'; // 增大字体 closeBtn.style.fontWeight = 'bold'; closeBtn.style.color = '#fff'; closeBtn.style.cursor = 'pointer'; closeBtn.style.transition = 'transform 0.3s'; // 添加过渡效果 closeBtn.style.backgroundColor = '#ff5733'; // 圆形背景颜色 closeBtn.style.borderRadius = '50%'; // 圆形背景 closeBtn.style.width = '50px'; // 圆形背景宽度 closeBtn.style.height = '50px'; // 圆形背景高度 closeBtn.style.display = 'flex'; // 使用flex布局 closeBtn.style.alignItems = 'center'; // 垂直居中 closeBtn.style.justifyContent = 'center'; // 水平居中 closeBtn.onclick = function() { modal.style.opacity = '0'; // 设置模态框容器的透明度为0 modalContent.style.opacity = '0'; // 设置模态框内容的透明度为0 setTimeout(function() { modal.style.display = 'none'; if (message === "F12被禁用") { modalShown = false; // 当模态框关闭时,重置F12警告标志变量 } else if (message === "请使用Del键进行字符的删除操作!") { deleteAlertShown = false; // 当模态框关闭时,重置删除键警告标志变量 } }, 1000); // 1秒后隐藏模态框 }; // 添加鼠标悬停旋转效果 closeBtn.onmouseover = function() { closeBtn.style.transform = 'rotate(90deg)'; }; closeBtn.onmouseout = function() { closeBtn.style.transform = 'rotate(0deg)'; }; // 创建禁止符号 var forbiddenIcon = document.createElement('span'); forbiddenIcon.innerHTML = '❌'; // 禁止符号 forbiddenIcon.style.fontSize = '48px'; forbiddenIcon.style.color = '#ff5733'; forbiddenIcon.style.marginBottom = '20px'; // 创建消息内容 var alertMessage = document.createElement('p'); alertMessage.innerHTML = message; alertMessage.style.fontSize = '36px'; // 增大字体 alertMessage.style.color = '#fff'; // 将元素添加到模态框内容中 modalContent.appendChild(closeBtn); modalContent.appendChild(forbiddenIcon); modalContent.appendChild(alertMessage); // 将模态框内容添加到模态框容器中 modal.appendChild(modalContent); // 将模态框容器添加到文档中 document.body.appendChild(modal); // 点击模态框外部关闭模态框 modal.onclick = function(event) { if (event.target == modal) { modal.style.opacity = '0'; // 设置模态框容器的透明度为0 modalContent.style.opacity = '0'; // 设置模态框内容的透明度为0 setTimeout(function() { modal.style.display = 'none'; if (message === "F12被禁用") { modalShown = false; // 当模态框关闭时,重置F12警告标志变量 } else if (message === "请使用Del键进行字符的删除操作!") { deleteAlertShown = false; // 当模态框关闭时,重置删除键警告标志变量 } }, 1000); // 1秒后隐藏模态框 } }; }
版权免责声明
01、本站所有的资源都来源于互联网搜集并整理,如有侵权请邮件联系站长!
02、本站分享的资源仅供参考和学习,您必须在下载后的24个小时之内删除!
03、本站分享目的仅供学习研究和借鉴,请不要用于商业用途以及违法用途!
04、本站提供的源码不保证资源的完整性以及安全性,不附带任何技术服务!
05、禁止用本站源码用于非法商业用途,不得违反国家法律,否则后果自负!
06、如发现资源链接无法下载、失效或广告,请联系管理员或提交工单处理!
07、所有资源均可通过日常签到等任务进行免费兑换,记得每天到本站签到!
08、本站所有资源积分兑换只是赞助,收取费用仅维持本站的日常运营所需!
09、如果您也有好的资源或教程,您可以投稿发布,成功分享后有积分奖励!
10、如需商用请购买正版,由于未及时购买正版发生侵权行为,与本站无关!
11、如果您发现本站分享的资源侵犯了您的权益,请邮件联系我们进行删除!
资源嘴
资源嘴(zyzui.com)是一个专业的互联网资源分享网站,专注最新最全源码软件资源分享!
常见问题
猜你喜欢
猜你喜欢
- 禁用F12代码 2024-09-17
- 2023年价值1980的图文引流创业粉螺旋起好技术暴力起粉加爆微信 2023-03-20
- 2022.9.21 羊了个羊通关教程,最新亲测有效! 2022-09-21
- 如何选择国外服务器 国外服务器怎么样 海外服务器有什么好处 2022-09-14
- QHMY手游最新加速秒杀脚本代码 排位稳上分 GG修改器代码 2022-08-24
- QHMY手游最新无限技能CD脚本代码 排位稳上分 GG修改器代码 2022-08-24
- 分享PHP读取TXT文本内容的五种教程 2022-08-20
- 抖音+快手+今日头条+番茄畅听,全网最新的自动挂机赚金币 2022-08-07
- 400个专业高质量短视频必备音效素材,百分百免版税! 2022-08-07
- RiPro主题美化-给导航菜单添加图标 2022-07-23