很多人不想让别人看自己网站的源代码,对于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;}
© 版权声明
1. 资源都是经过站长或作者收集测试后修改发布分享。转载请在文内以超链形式注明出处,谢谢合作!
2. 本站除原创内容,其余所有内容均收集自互联网,仅限用于学习和研究目的,本站不对其内容的合法性承担任何责任。如有版权内容,请通知我们或作者删除,其版权均归原作者所有,本站虽力求保存原有版权信息,但因众多资源经多次转载,已无法确定其真实来源,或已将原有信息丢失,所以敬请原作者谅解!
3. 本站用户所发布的一切资源内容不代表本站立场,并不代表本站赞同其观点和对其真实性负责,若您对本站所载资源作品版权归属存有异议,请留言附说明联系邮箱,我们将在第一时间予以处理 ,同时向您表示歉意!为尊重作者版权,请购买原版作品,支持您喜欢的作者,谢谢!
4. 本站一律禁止以任何方式发布或转载任何违法的相关信息,访客如有发现请立即向站长举报;本站资源文件大多存储在云盘,如发现链接或图片失效,请联系作者或站长及时更新。
THE END
喜欢就支持一下吧
相关推荐
暂无评论内容