aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/element/mouseup_event
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-25 01:13:06 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-03 02:40:42 +0900
commit59c437a737cb732c5fdecf12d5a9abe9da0d6bf0 (patch)
treec02cf850894b2d5bf41674b852ccc6e1f72a5d2e /files/ja/web/api/element/mouseup_event
parent98486b8f245c075a3411d0ce36651a55f525f45a (diff)
downloadtranslated-content-59c437a737cb732c5fdecf12d5a9abe9da0d6bf0.tar.gz
translated-content-59c437a737cb732c5fdecf12d5a9abe9da0d6bf0.tar.bz2
translated-content-59c437a737cb732c5fdecf12d5a9abe9da0d6bf0.zip
Element 要素の MouseEvent 系のイベントを更新
- 2021/10/24 時点の英語版に基づく - contextmenu と auxclick は新規翻訳
Diffstat (limited to 'files/ja/web/api/element/mouseup_event')
-rw-r--r--files/ja/web/api/element/mouseup_event/index.md113
1 files changed, 48 insertions, 65 deletions
diff --git a/files/ja/web/api/element/mouseup_event/index.md b/files/ja/web/api/element/mouseup_event/index.md
index 982fd32c95..2c037e0894 100644
--- a/files/ja/web/api/element/mouseup_event/index.md
+++ b/files/ja/web/api/element/mouseup_event/index.md
@@ -4,87 +4,70 @@ slug: Web/API/Element/mouseup_event
tags:
- API
- DOM
- - Event
- - Interface
+ - イベント
+ - インターフェイス
- MouseEvent
- - Reference
+ - リファレンス
- Release
- UI
- Up
- - button
- - events
- - mouse
- - mouseup
- - イベント
+ - ボタン
- マウス
+ - mouseup
+browser-compat: api.Element.mouseup_event
translation_of: Web/API/Element/mouseup_event
---
-<div>{{APIRef}}</div>
+{{APIRef}}
+
+**`mouseup`** イベントは、 {{domxref("Element")}} においてポインターが中にあるときにポインティングデバイス (マウスやトラックパッドなど) のボタンが離されたときに発生します。
-<p><span class="seoSummary"><strong><code>mouseup</code></strong> イベントは、 {{domxref("Element")}} においてポインターが中にあるときにポインティングデバイス (マウスやトラックパッドなど) のボタンが離されたときに発生します。</span> <code>mouseup</code> イベントは {{domxref("Element.mousedown_event", "mousedown")}} イベントに対応します。</p>
+`mouseup` イベントは {{domxref("Element.mousedown_event", "mousedown")}} イベントに対応します。
<table class="properties">
- <tbody>
- <tr>
- <th scope="row">バブリング</th>
- <td>あり</td>
- </tr>
- <tr>
- <th scope="row">キャンセル</th>
- <td>可</td>
- </tr>
- <tr>
- <th scope="row">インターフェイス</th>
- <td>{{domxref("MouseEvent")}}</td>
- </tr>
- <tr>
- <th scope="row">イベントハンドラープロパティ</th>
- <td>{{domxref("GlobalEventHandlers.onmouseup", "onmouseup")}}</td>
- </tr>
- </tbody>
+ <tbody>
+ <tr>
+ <th scope="row">バブリング</th>
+ <td>あり</td>
+ </tr>
+ <tr>
+ <th scope="row">キャンセル</th>
+ <td>可</td>
+ </tr>
+ <tr>
+ <th scope="row">インターフェイス</th>
+ <td>{{domxref("MouseEvent")}}</td>
+ </tr>
+ <tr>
+ <th scope="row">イベントハンドラープロパティ</th>
+ <td>
+ {{domxref("GlobalEventHandlers.onmouseup", "onmouseup")}}
+ </td>
+ </tr>
+ </tbody>
</table>
-<h2 id="Examples" name="Examples">例</h2>
+## 例
-<p>{{page("/ja/docs/Web/API/Element/mousemove_event", "Examples")}}</p>
+サンプルコードは [`mousemove` イベント](/ja/docs/Web/API/Element/mousemove_event#examples)を参照してください。
-<h2 id="Specifications" name="Specifications">仕様書</h2>
+## 仕様書
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- <th scope="col">状態</th>
- </tr>
- </thead>
- <thead>
- <tr>
- <td>{{SpecName('UI Events', '#event-type-mouseup', 'mouseup')}}</td>
- <td>{{Spec2('UI Events')}}</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM3 Events', '#event-type-mouseup', 'mouseup')}}</td>
- <td>{{Spec2('DOM3 Events')}}</td>
- </tr>
- </thead>
-</table>
+{{Specifications}}
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+## ブラウザーの互換性
-<p>{{Compat("api.Element.mouseup_event")}}</p>
+{{Compat}}
-<h2 id="See_also" name="See_also">関連情報</h2>
+## 関連情報
-<ul>
- <li><a href="/ja/docs/Learn/JavaScript/Building_blocks/Events">イベントの紹介</a></li>
- <li>{{domxref("Element/mousedown_event", "mousedown")}}</li>
- <li>{{domxref("Element/mouseup_event", "mouseup")}}</li>
- <li>{{domxref("Element/mousemove_event", "mousemove")}}</li>
- <li>{{domxref("Element/click_event", "click")}}</li>
- <li>{{domxref("Element/dblclick_event", "dblclick")}}</li>
- <li>{{domxref("Element/mouseover_event", "mouseover")}}</li>
- <li>{{domxref("Element/mouseout_event", "mouseout")}}</li>
- <li>{{domxref("Element/mouseenter_event", "mouseenter")}}</li>
- <li>{{domxref("Element/mouseleave_event", "mouseleave")}}</li>
- <li>{{domxref("Element/contextmenu_event", "contextmenu")}}</li>
-</ul>
+- [イベントの紹介](/ja/docs/Learn/JavaScript/Building_blocks/Events)
+- {{domxref("Element/mousedown_event", "mousedown")}}
+- {{domxref("Element/mouseup_event", "mouseup")}}
+- {{domxref("Element/mousemove_event", "mousemove")}}
+- {{domxref("Element/click_event", "click")}}
+- {{domxref("Element/dblclick_event", "dblclick")}}
+- {{domxref("Element/mouseover_event", "mouseover")}}
+- {{domxref("Element/mouseout_event", "mouseout")}}
+- {{domxref("Element/mouseenter_event", "mouseenter")}}
+- {{domxref("Element/mouseleave_event", "mouseleave")}}
+- {{domxref("Element/contextmenu_event", "contextmenu")}}