禁止用户获取代码教程-子比 7B2可用(WordPress主题)

很多人不想让别人看自己网站的源代码,对于WordPress,可以采取一些措施来限制用户以各种方式获取代码,就像禁止复制、禁止右键等操作。这些方法适用于各种主题,例如子比(zibll)或7B2等。以下是具体的步骤:

禁止用户获取代码教程

禁止用户获取代码教程

使用方法.

引用CSS,把以下

代码添加到子比的主题设置-自定义代码里的自定义底部HTML代码即可。

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/element-ui@2.15.6/lib/index.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/element-ui@2.15.6/packages/theme-chalk/lib/index.css">

把以下代码添加到子比的主题设置-自定义代码里的自定义javascript代码里即.站长已亲测贴心的标上了注释。

//禁止用户以各种方式获取代码 /*ctrl+u*/ document.onkeydown=function(){if(event.ctrlKey&&window.event.keyCode==85){new Vue({data:function(){this.$notify({title:"嘿!别瞎按",message:"老弟,想偷我源码?~",position:'bottom-right',offset:50,showClose:true,type:"error"});return{visible:false}}}) return false;} /*f 12*/ if(window.event&&window.event.keyCode==123){event.keyCode=0;event.returnValue=false;new Vue({data:function(){this.$notify({title:"嘿!Bingo~",message:"老弟,试试 Alt+Shift+Fn+F4",position:'bottom-right',offset:50,showClose:true,type:"error"});return{visible:false}}}) return false;} /*ctrl+s*/ if(event.ctrlKey&&window.event.keyCode==83){new Vue({data:function(){this.$notify({title:"嘿!你瞧瞧你",message:"网页得换方法保存哦~",position:'bottom-right',offset:50,showClose:true,type:"error"});return{visible:false}}}) return false;} /*ctrl+shift+i*/ if((event.ctrlKey)&&(event.shiftKey)&&(event.keyCode==73)){new Vue({data:function(){this.$notify({title:"嘿!哈哈哈",message:"老弟,调试方法也得换换哟~",position:'bottom-right',offset:50,showClose:true,type:"error"});return{visible:false}}}) return false;} /*f5*/ if(window.event&&window.event.keyCode==116){event.keyCode=0;event.returnValue=false;new Vue({data:function(){this.$notify({title:"嘿!喂喂喂",message:"浏览器自带刷新按钮不香吗?",position:'bottom-right',offset:50,showClose:true,type:"warning"});return{visible:false}}}) return false;}} /*复制tips*/ document.addEventListener("copy",function(e){new Vue({data:function(){this.$notify({title:"叮!复制成功",message:"若要转载必须保留本站原文链接!",position:'bottom-right',offset:50,showClose:true,type:"success"});return{visible:false}}})}) /* 禁用右键菜单并提醒 */ document.oncontextmenu = function (){new Vue({data:function(){this.$notify({title:"嘿!没有右键菜单",message:"复制请用键盘快捷键 Ctrl+C",position:'bottom-right',offset:50,showClose:true,type:"warning"});return{visible:false}}}) return false;}

 

© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容