blob: bf143fc69929970b531fca8531bfd22c70b8f948 (
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
|
---
title: GlobalEventHandlers.onmousedown
slug: Web/API/GlobalEventHandlers/onmousedown
tags:
- API
- Event Handler
- GlobalEventHandlers
- HTML DOM
- Property
- Reference
browser-compat: api.GlobalEventHandlers.onmousedown
translation_of: Web/API/GlobalEventHandlers/onmousedown
---
<div>{{ ApiRef("HTML DOM") }}</div>
<p><strong><code>onmousedown</code></strong> は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、{{event("mousedown")}} イベントを処理する<a href="/ja/docs/Web/Events/Event_handlers">イベントハンドラー</a>です。</p>
<p><code>mousedown</code> イベントは、ユーザーがマウスボタンを押したときに発行されます。</p>
<div class="notecard note">
<p><strong>メモ:</strong> <code>onmousedown</code> の反対の動作は {{domxref("GlobalEventHandlers.onmouseup", "onmouseup")}} です。</p>
</div>
<h2 id="Syntax">構文</h2>
<pre class="brush: js"><em>target</em>.onmousedown = <em>functionRef</em>;
</pre>
<h3 id="Value">値</h3>
<p><code>functionRef</code> は、関数名または<a href="/ja/docs/Web/JavaScript/Reference/Operators/function">関数式</a>です。この関数は、唯一の引数として {{domxref("MouseEvent")}} オブジェクトを受け取ります。</p>
<h2 id="Example">例</h2>
<p>この例は、マウスボタンを押したままにすると画像の一部を表示します。<code>onmousedown</code>, {{domxref("GlobalEventHandlers.onmouseup", "onmouseup")}}, {{domxref("GlobalEventHandlers.onmousemove", "onmousemove")}} イベントハンドラーを使用します。</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div class="container">
<div class="view" hidden></div>
<img src="https://interactive-examples.mdn.mozilla.net/media/examples/gecko-320-213.jpg">
</div></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">.container {
width: 320px;
height: 213px;
background: black;
}
.view {
position: absolute;
width: 100px;
height: 100px;
background: white;
border-radius: 50%;
}
img {
mix-blend-mode: darken;
}</pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js">function showView(event) {
view.removeAttribute('hidden');
view.style.left = event.clientX - 50 + 'px';
view.style.top = event.clientY - 50 + 'px';
event.preventDefault();
}
function moveView(event) {
view.style.left = event.clientX - 50 + 'px';
view.style.top = event.clientY - 50 + 'px';
}
function hideView(event) {
view.setAttribute('hidden', '');
}
const container = document.querySelector('.container');
const view = document.querySelector('.view');
container.onmousedown = showView;
container.onmousemove = moveView;
document.onmouseup = hideView;</pre>
<h3 id="Result">結果</h3>
<p>{{EmbedLiveSample("Example", 700, 300)}}</p>
<h2 id="Specifications">仕様書</h2>
{{Specifications}}
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat}}</p>
<h2 id="See_also">関連情報</h2>
<ul>
<li>{{event("mousedown")}} イベント</li>
</ul>
|