HTML5 event-contextmenu hide the right-click menu and html5contextmenu

Source: Internet
Author: User

HTML5 event-contextmenu hide the right-click menu and html5contextmenu

When you right-click a window or press Ctrl + on a Mac, the contextmenu event is triggered. By canceling its default action, you can customize the menu.
First, write a menu:

<style>        ul, li {            margin: 0;            padding: 0;        }        #myMenu{            list-style: none;            width: 150px;            border: 1px solid #ccc;            border-bottom: none;            position: absolute;            display: none;        }        #myMenu li{            border-bottom: 1px solid #ccc;            padding: 5px 10px;            cursor: pointer;        }        #myMenu li:hover{            background-color: #ccc;        }    </style>
<Ul id = "myMenu"> <li> right-click what do you want? </Li> <li> source code? </Li> <li> Do You Want To review elements? </Li> </ul>

This is what it looks like:

Add a contextmenu event to the document, and then cancel the default event to display the custom menu:

Var myMenu = document. getElementById ("myMenu"); document. addEventListener ("contextmenu", function (event) {event. preventDefault (); myMenu. style. display = "block"; // obtain the position of myMenu in the mouse and view. style. top = event. clientY + "px"; myMenu. style. left = event. clientX + "px ";});

Of course, you can click here to hide the menu:

document.addEventListener("click", function(event){    myMenu.style.display = "none";});

Setting better-looking css for custom menus will have better results!

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.