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

HTMLonmouseupイベント属性


HTML onmouseupイベント属性は、HTMLドキュメントのHTML要素からマウスボタンを離したときにトリガーされます。

構文

以下は構文です-

<tagname onmouseup=”script”></tagname>

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

<!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;
   }
   .circle {
      background: #db133a;
      height: 150px;
      width: 150px;
      border-radius: 50%;
      margin: 10px auto;
   }
   p {
      margin: 30px auto;
   }
</style>
</head>
<body>
<h1>HTML onmouseup Event Attribute Demo</h1>
<div class="circle" onmousedown="mouseDownFn()" onmouseup="mouseUpFn()"></div>
<p>Try to click the above red circle</p>
<script>
   function mouseDownFn() {
      document.querySelector('.circle').style.transform = 'scale(0.5)';
   }
   function mouseUpFn() {
      document.querySelector('.circle').style.transform = 'scale(1.2)';
   }
</script>
</body>
</html>

出力

HTMLonmouseupイベント属性

」をクリックします 」円を使用して、onmouseupイベント属性がどのように機能するかを確認します。

HTMLonmouseupイベント属性


HTMLonmouseupイベント属性


  1. HTMLonmousemoveイベント属性

    HTML onmousemoveイベント属性は、マウスポインタがHTMLドキュメント内のHTML要素上を移動しているときにトリガーされます。 構文 以下は構文です- <tagname onmousemove=”script”></tagname> HTMLonmousemoveイベント属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <head> <style>    body {       color: #000;

  2. HTMLonmousedownイベント属性

    HTML onmousedownイベント属性は、HTMLドキュメントのHTML要素でマウスボタンが押されたときにトリガーされます。 構文 以下は構文です- <tagname onmousedown=”script”></tagname> HTMLonmousedownイベント属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <head> <style>    body {       color: #000; &nbs