blob: 21837138aaa5f416d6cbab5ce78fa6b2232a7654 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
---
title: element.onmouseup
slug: Web/API/GlobalEventHandlers/onmouseup
tags:
- API
- Event Handler
- GlobalEventHandlers
- HTML DOM
- Property
- Reference
translation_of: Web/API/GlobalEventHandlers/onmouseup
---
<div>{{ApiRef("HTML DOM")}}</div>
<p><code><strong>onmouseup</strong></code> は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、{{event("mouseup")}} イベントを処理する{{domxref("EventHandler" ,"イベントハンドラー")}}です。</p>
<p><code>mouseup</code> イベントは、ユーザーがマウスボタンを離したときに発生します。</p>
<div class="blockIndicator note">
<p><strong>メモ:</strong> <code>onmouseup</code> の反対の動作は {{domxref("GlobalEventHandlers.onmousedown", "onmousedown")}} です。</p>
</div>
<h2 id="構文">構文</h2>
<pre class="syntaxbox notranslate"><em>target</em>.onmouseup = <var>functionRef</var>;</pre>
<h3 id="値">値</h3>
<p><code>functionRef</code> は、関数名または<a href="/docs/Web/JavaScript/Reference/Operators/function">関数式</a>です。この関数は、唯一の引数として {{domxref("MouseEvent")}} オブジェクトを受け取ります。</p>
<h2 id="例">例</h2>
<p>この例は、マウスでクリックするとトーストが非表示になり、離すと再び表示されます。{{domxref("GlobalEventHandlers.onmousedown", "onmousedown")}} と <code>onmouseup</code> イベントハンドラーを使用します。</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><div class="container">
<div class="toaster"></div>
<div class="toast">Hello world!</div>
</div></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css notranslate">.container {
position: absolute;
left: 50%;
bottom: 20px;
transform: translate(-50%);
}
.toaster {
width: 160px;
height: 110px;
background: #bbb;
border-radius: 10px 10px 0 0;
}
.toast {
position: absolute;
left: 50%;
top: 50%;
z-index: -1;
width: 100px;
height: 50px;
padding: 10px;
background: #ed9;
border-radius: 10px 10px 0 0;
transform: translate(-50%, -90px);
transition: transform .3s;
}
.depressed {
transform: translate(-50%, -50%);
}</pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js notranslate">function depress() {
toast.classList.add('depressed');
}
function release() {
toast.classList.remove('depressed');
}
const toaster = document.querySelector('.toaster');
const toast = document.querySelector('.toast');
toaster.onmousedown = depress;
document.onmouseup = release;</pre>
<h3 id="結果">結果</h3>
<p>{{EmbedLiveSample("Example", 700, 200)}}</p>
<h2 id="仕様">仕様</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-onmouseup','onmouseup')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
<div>
<p>{{Compat("api.GlobalEventHandlers.onmouseup")}}</p>
</div>
<h2 id="関連情報">関連情報</h2>
<ul>
<li>{{event("mouseup")}} event</li>
</ul>
|