/* 添加到自定义底部 HTML 代码 */
/* 禁止F12 */
document.onkeydown=document.onkeyup=document.onkeypress=function () {
if (window.event.keyCode==123) {
window.event.returnValue=false;
return (false);
}
}
/* 复制提醒 */
document.addEventListener("copy", function(e) {
new Vue( {
data:function() {
this.$notify( {
title: "嘿!复制成功",
message:"若要转载请务必保留原文链接!谢谢~",
position: 'bottom-right',
offset: 50, showClose: false, type:"success"
});
return {
visible: false
}
}
})
})
/* 禁用右键提醒 */
document.oncontextmenu=function () {
new Vue( {
data:function() {
this.$notify( {
title: "嘿!没有右键菜单",
message:"复制请用键盘快捷键",
position: 'bottom-right',
offset: 50, showClose: false, type:"warning"
});
return {
visible: false
}
}
})
return false;
}