HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLoncontextmenuイベント属性


HTML oncontextmenuイベント属性は、ユーザーがHTML要素を右クリックしてHTMLドキュメントのコンテキストメニューを開くとトリガーされます。

構文

以下は構文です-

<tagname oncontextmenu=”script”></tagname>

HTMLoncontextmenuイベント属性の例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #FBAB7E;
      background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
      text-align: center;
      padding: 20px;
   }
   .box {
      background: #db133a;
      width: 140px;
      height: 140px;
      margin: 1rem auto;
      color: #fff;
   }
</style>
</head>
<body>
<h1>HTML oncontextmenu Event Attribute Demo</h1>
<p oncontextmenu="get()" class="box"></p>
<p>Now try to right click on above red box to open context menu.</p>
<script>
   function get() {
      document.body.style.background = "#084C61";
      document.body.style.color = '#fff';
}
</script>
</body>
</html>

出力

HTMLoncontextmenuイベント属性

次に、赤いボックスを右クリックして、oncontextmenuイベント属性がどのように機能するかを確認してください。

HTMLoncontextmenuイベント属性


  1. HTMLondragendイベント属性

    HTML ondragendイベント属性は、ユーザーがHTMLドキュメント内のHTML要素の要素またはテキストのドラッグを終了したときにトリガーされます。 構文 以下は構文です- <tagname ondragend=”script”></tagname> HTMLオンドラッグイベント属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <head> <style>    body {       color: #000;

  2. HTMLonpageshowイベント属性

    HTML onpageshowイベント属性は、ユーザーがWebページに移動したときにトリガーされます。 構文 以下は構文です- <body onpageshow=”script”></body> HTMLonpageshowイベント属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       height: 100vh; &nb