console
<html>
<head>
<script>
window.onload = function(){
var menu = document.getElementById('menu');
document.body.oncontextmenu = function(e){
var e = e || window.event;
e.preventDefault();
let scrollTop =
document.documentElement.scrollTop || document.body.scrollTop;
let scrollLeft =
document.documentElement.scrollLeft || document.body.scrollLeft;
menu.style.display = 'block';
menu.style.left = e.clientX + scrollLeft + 'px';
menu.style.top = e.clientY + scrollTop + 'px';
}
document.onclick = function(){
menu.style.display = 'none';
}
}
</script>
</head>
<body style="overflow:auto">
<div id="box" ></div>
<div id="menu">
<ul>
<li><a href="https://wood3013.rthe.xyz/zz.html" rel="external nofollow" rel="external nofollow" rel="external nofollow" >作者</a></li>
<li><a href="https://wood3013.rthe.xyz/zy.html" rel="external nofollow" rel="external nofollow" rel="external nofollow" >星柠</a></li>
<li><a href="https://wood3013.rthe.xyz/menu.html" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单</a></li>
<li><a href="https://wood3013.rthe.xyz/-404-.html" rel="external nofollow" rel="external nofollow" rel="external nofollow" >抖音</a></li>
<li><a href="https://www.iqiyi.com/u/1771207802/feeds" rel="external nofollow" rel="external nofollow" rel="external nofollow" >爱奇艺</a></li>
<li><a href="https://space.bilibili.com/502242781?spm_id_from=333.788.b_765f7570696e666f.1" rel="external nofollow" rel="external nofollow" rel="external nofollow" >哔哩哔哩</a></li>
<li>©2020 <a href="menu.html"><font color="black">wood3013.rthe.net</font></a></li>
</ul>
</div>
</body>
</html>