ホームページ > 記事 > ウェブフロントエンド > jqueryはWebページの指定領域にカスタム右クリックメニュー効果の表示を実装します
この記事では主に、Web ページの指定された領域でカスタムの右クリック メニュー効果を実現するための jQuery を紹介します。これには、JQuery のマウス クリックやイベント バインディング、その他の関連テクニックが含まれます。これには、一定の参考値があります。
これは、jquery によって実装された Web ページの右クリック メニュー効果です。他のカスタマイズされた右クリック メニューとの違いは、このメニューが指定された領域内でのみ有効であることです。指定した領域を超える場合は、右クリック後に表示されます。これはブラウザの右クリック メニューです。エフェクトを実行した後、オレンジ色の領域でマウスを右クリックすると、ブラウザの右クリック メニューとはまったく異なる、アイコンの付いたカスタムの右クリック メニューが表示されます。
実行中のエフェクトのスクリーンショットは次のとおりです:
オンライン デモのアドレスは次のとおりです:
http: //demo.jb51.net/ js/2015/jquery-web-area-right-click-menu-codes/
具体的なコードは次のとおりです:
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery自定义区域的鼠标右键菜单</title> <script src="jquery-1.6.2.min.js"></script> <style type="text/css"> #mask{position: absolute;left: 0;top: 0;z-index: 9000;display: block;} #myMenu{position: absolute;display: none;z-index: 9999;background: yellow;border: 1px solid;width: 200px;height: 155px;} #textbox{background: orange;width: 380px;border: 2px solid;} img{height: 30px;width: 30px;} td{font-size: 20px;cursor: pointer;} a{text-decoration: none;color: black;} a: hover{color: white;background: black;} </style> <script type="text/javascript"> var windowwidth; var windowheight; var checkmenu; $(window).ready(function() { $('#myMenu').hide(); $('#textbox').bind("contextmenu",function(e){ windowwidth = $(window).width(); windowheight = $(window).height(); checkmenu = 1; $('#mask').css({ 'height': windowheight, 'width': windowwidth }); $('#myMenu').show(500); $('#myMenu').css({ 'top':e.pageY+'px', 'left':e.pageX+'px' }); return false; }); $('#mask').click(function(){ $(this).height(0); $(this).width(0); $('#myMenu').hide(500); checkmenu = 0; return false; }); $('#mask').bind("contextmenu",function(){ $(this).height(0); $(this).width(0); $('#myMenu').hide(500); checkmenu = 0; return false; }); $(window).resize(function(){ if(checkmenu == 1) { windowwidth = $(window).width(); windowheight = $(window).height(); $('#mask').css({ 'height': windowheight, 'width': windowwidth, }); } }); }); </script> </head> <body > <p id="myMenu" > <table cellspace="3"> <tr> <td ><img src="images/twitter.png" ></td><td><a href="#">tweet me</a></td> </tr> <tr> <td ><img src="images/facebook.png" > </td><td><a href="#">facebook share</a></td> </tr> <tr> <td ><img src="images/myspace.png" > </td><td><a href="#">myspace share</a></td> </tr> <tr> <td ><img src="images/mail.png" > </td><td><a href="#">e-mail this</a></td> </tr> </table> </p> <p id="mask"> </p> <p id="textbox"> <p>嗨!您好,在这个区域内点击您的鼠标右键吧,会弹出一个自定义的右键菜单,和浏览器的右键菜单完全不一样哦!<p/> </p> <p> </body> </html>
上記はこの章の全内容です。その他の関連チュートリアルについては、jQuery ビデオ チュートリアル をご覧ください。