JS实现自定义右键菜单

灵图时做的,效果如下

 

Demo效果图

Demo源码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
  <head>
    <title>JS实现自定义右键菜单</title>
    <meta http-equiv="content-type" content="text/html; charset=gbk">
    <script src="http://api.51ditu.com/js/ajax.js"></script>
 
    <style type="text/css">
        #container {
            text-align : center;
            width : 500px;
            height : 500px;
            border : 1px solid blue;
            margin : 0 auto;
             
        }
        .skin {
            width : 100px;
            border : 1px solid gray;
            padding : 2px;
            visibility : hidden;
            position : absolute;
        }
        div.menuitems {
            margin : 1px 0;
        }
        div.menuitems a {
            text-decoration : none;
        }
        div.menuitems:hover {
            background-color : #c0c0c0;
        }
    </style>
<script>     
window.onload = function() {
     
    var container = document.getElementById('container');  
    var menu = document.getElementById('menu');
     
    /*显示菜单*/
    function showMenu() {
 
        var evt = window.event || arguments[0];
         
        /*获取当前鼠标右键按下后的位置,据此定义菜单显示的位置*/
        var rightedge = container.clientWidth-evt.clientX;
        var bottomedge = container.clientHeight-evt.clientY;
 
        /*如果从鼠标位置到容器右边的空间小于菜单的宽度,就定位菜单的左坐标(Left)为当前鼠标位置向左一个菜单宽度*/
        if (rightedge < menu.offsetWidth)               
            menu.style.left = container.scrollLeft + evt.clientX - menu.offsetWidth + "px";            
        else
        /*否则,就定位菜单的左坐标为当前鼠标位置*/
            menu.style.left = container.scrollLeft + evt.clientX + "px";
         
        /*如果从鼠标位置到容器下边的空间小于菜单的高度,就定位菜单的上坐标(Top)为当前鼠标位置向上一个菜单高度*/
        if (bottomedge < menu.offsetHeight)
            menu.style.top = container.scrollTop + evt.clientY - menu.offsetHeight + "px";
        else
        /*否则,就定位菜单的上坐标为当前鼠标位置*/
            menu.style.top = container.scrollTop + evt.clientY + "px";
             
        /*设置菜单可见*/
        menu.style.visibility = "visible";             
        LTEvent.addListener(menu,"contextmenu",LTEvent.cancelBubble);
    }
    /*隐藏菜单*/
    function hideMenu() {
        menu.style.visibility = 'hidden';
    }                              
    LTEvent.addListener(container,"contextmenu",LTEvent.cancelBubble);
    LTEvent.addListener(container,"contextmenu",showMenu);
    LTEvent.addListener(document,"click",hideMenu);                    
}
     
</script>
  </head>
   
  <body>
     
    <div id="menu" class="skin">
        <div class="menuitems">
            <a href="javascript:history.back();">后退</a>
        </div>
        <div class="menuitems">
            <a href="javascript:history.back();">前进</a>
        </div>
        <hr>
        <div class="menuitems">
            <a href="http://api.51ditu.com/" target="_blank">地图api</a>
        </div>
        <div class="menuitems">
            <a href="http://www.51ditu.com/traffic/index.html" target="_blank">实时交通</a>
        </div>
        <div class="menuitems">
            <a href="http://www.51ditu.com" target="_blank">地图搜索</a>
        </div>
        <div class="menuitems">
            <a href="http://nav.51ditu.com" target="_blank">驾驶导航</a>
        </div>
        <hr>
        <div class="menuitems">
            <a href="http://uu.51ditu.com" target="_blank">灵图UU</a>
        </div>
        <div class="menuitems">
            <a href="http://lushu.51ditu.com" target="_blank">路书下载</a>
        </div>
        <hr>
        <div class="menuitems">
            <a href="http://www.lingtu.com" target="_blank">关于本站</a>
        </div>
        <div class="menuitems">
            <a href="http://emap.51ditu.com/link/link.html" target="_bland">友情链接</a>
        </div>
    </div>
     
    <div id="container">     
        <p>右键此区域</p>
    </div>
  </body>
</html>

  

posted on   snandy  阅读(47915)  评论(12编辑  收藏  举报

编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
· 使用C#创建一个MCP客户端
< 2011年3月 >
27 28 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31 1 2
3 4 5 6 7 8 9

统计

点击右上角即可分享
微信分享提示