1. 程式人生 > 實用技巧 >WordPress禁止F12審查元素、禁止圖片拖動、禁止Ctrl+S儲存、禁止Ctrl+U檢視原始碼、右鍵美化

WordPress禁止F12審查元素、禁止圖片拖動、禁止Ctrl+S儲存、禁止Ctrl+U檢視原始碼、右鍵美化

WordPress站經常會被同行看到,辛辛苦苦上傳的圖片和絞盡腦汁寫的文案就被同行抄走了,所以很有必要禁用右鍵。
純程式碼無需外掛,WordPress禁止F12審查元素、禁止圖片拖動、禁止Ctrl+S儲存、禁止Ctrl+U檢視原始碼、右鍵美化,複製彈窗提醒版權
在主題footer.php 新增以下程式碼

<script>//禁止F12
function fuckyou(){
window.close(); //關閉當前視窗(防抽)
window.location="about:blank"; //將當前視窗跳轉置空白頁
}

function click(e) {
if (document.all) {
  
if (event.button==2||event.button==3) { alert("歡迎光臨寒舍,有什麼需要幫忙的話,請與站長聯絡!謝謝您的合作!!!"); oncontextmenu='return false'; } } if (document.layers) { if (e.which == 3) { oncontextmenu='return false'; } } } if (document.layers) { fuckyou(); document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; document
.oncontextmenu = new Function("return false;") document.onkeydown =document.onkeyup = document.onkeypress=function(){ if(window.event.keyCode == 123) { fuckyou(); window.event.returnValue=false; return(false); } } </script> <script> document.onkeydown=function(){ var e = window.event||arguments[0];
if(e.keyCode==123){ alert('提示:F12鍵錯位無法現實!'); return false; }else if((e.ctrlKey)&&(e.shiftKey)&&(e.keyCode==73)){ alert('未知錯誤!'); return false; }else if((e.ctrlKey)&&(e.keyCode==85)){ alert('Ctrl+U鍵錯位無法現實!'); return false; }else if((e.ctrlKey)&&(e.keyCode==83)){ alert('Ctrl+S鍵錯位無法現實!'); return false; } // 禁止圖片拖放 document.ondragstart = function() { return false } /* } document.oncontextmenu=function(){ alert('小部落格,大佬手下留情呀5!'); return false; */ } </script> <!-- 修改滑鼠右鍵 --> <style type="text/css"> a {text-decoration: none;} div.usercm{background-repeat:no-repeat;background-position:center center;background-size:cover;background-color:#fff;font-size:13px!important;width:130px;-moz-box-shadow:1px 1px 3px rgba (0,0,0,.3);box-shadow:1px 1px 3px rgba(0,0,0,.3);position:absolute;display:none;z-index:10000;opacity:0.9;} div.usercm ul{list-style-type:none;list-style-position:outside;margin:0px;padding:0px;display:block} div.usercm ul li{margin:0px;padding:0px;line-height:35px;border-bottom:1px solid #ccc;} div.usercm ul li a{color:#666;padding:0 15px;display:block} div.usercm ul li a:hover{color:#fff;background:rgba(170,222,18,0.88)} div.usercm ul li a i{margin-right:10px} a.disabled{color:#c8c8c8!important;cursor:not-allowed} a.disabled:hover{background-color:rgba(255,11,11,0)!important} div.usercm{background:#fff !important;} </style> <div class="usercm"> <ul> <li><a href="javascript:window.location.reload();"><i class="fa fa-refresh fa-fw"></i><span>重新整理頁面</span></a></li> <li><a href="javascript:history.go(1);"><i class="fa fa-arrow-right fa-fw"></i><span>前進一頁</span></a></li> <li><a href="javascript:history.go(-1);"><i class="fa fa-arrow-left fa-fw"></i><span>後退一頁</span></a></li> <li><a href="javascript:void(0);" onclick="getSelect();"><i class="fa fa-clipboard fa-fw"></i><span>複製文字</span></a></li> <li><a target="_blank" href="javascript:void(0);" onclick="googleSearch();"><i class="fa fa-chrome fa-fw"></i><span>360搜尋</span></a></li> <li><a target="_blank" href="javascript:void(0);" onclick="baiduSearch();"><i class="fa fa-paw fa-fw"></i><span>百度搜索</span></a></li> <li><a target="_blank" href="/zhuanti"><i class="fa fa-rss-square fa-fw"></i><span>資源專題</span></a></li> </ul> </div> <script type="text/javascript"> (function(a) { a.extend({ mouseMoveShow: function(b) { var d = 0, c = 0, h = 0, k = 0, e = 0, f = 0; a(window).mousemove(function(g) { d = a(window).width(); c = a(window).height(); h = g.clientX; k = g.clientY; e = g.pageX; f = g.pageY; h + a(b).width() >= d && (e = e - a(b).width() - 5); k + a(b).height() >= c && (f = f - a(b).height() - 5); a("html").on({ contextmenu: function(c) { 3 == c.which && a(b).css({ left: e, top: f }).show() }, click: function() { a(b).hide() } }) }) }, disabledContextMenu: function() { window.oncontextmenu = function() { return !1 } } }) })(jQuery); function getSelect() { "" == (window.getSelection ? window.getSelection() : document.selection.createRange().text) ? alert("啊噢...你沒還沒選擇文字呢!") : document.execCommand("Copy") } function baiduSearch() { var a = window.getSelection ? window.getSelection() : document.selection.createRange().text; "" == a ? alert("啊噢...你沒還沒選擇文字呢!") : window.open("https://www.baidu.com/s?wd=" + a) } function googleSearch() { var a = window.getSelection ? window.getSelection() : document.selection.createRange().text; "" == a ? alert("啊噢...你沒還沒選擇文字呢!") : window.open("https://www.so.com/search?q=" + a) } function localSearch() { var a = window.getSelection ? window.getSelection() : document.selection.createRange().text; "" == a ? alert("啊噢...你沒還沒選擇文字呢!") : window.open("search.php?q=" + a) } $(function() { for (var a = navigator.userAgent, b = "Android;iPhone;SymbianOS;Windows Phone;iPad;iPod".split(";"), d = !0, c = 0; c < b.length; c++) if (0 < a.indexOf(b[c])) { d = !1; break } d && ($.mouseMoveShow(".usercm"), $.disabledContextMenu()) }); </script> <link rel="stylesheet" type="text/css" rel="external nofollow" target="_blank" href="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.css"> <script src="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.js"></script> <script>document.body.oncopy = function() { swal("複製成功!", "轉載請務必保留原文連結,申明來源,謝謝合作!!","success");};</script> <A HREF="javascript:void(0)" onMouseover="alert('對不起,圖片不能隨便下載!')"><IMG SRC="j2.gif" Align="center" Border="0" width="99" height="50"></A>