aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/globaleventhandlers/onmousemove/index.html
blob: 7a3e4a8764fbf8983b3a348b28bc8750ec79c29e (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
---
title: GlobalEventHandlers.onmousemove
slug: Web/API/GlobalEventHandlers/onmousemove
tags:
  - API
  - Event Handler
  - GlobalEventHandlers
  - HTML DOM
  - Property
  - Reference
translation_of: Web/API/GlobalEventHandlers/onmousemove
---
<div>{{ApiRef("HTML DOM")}}</div>

<p><code><strong>onmousemove</strong></code>{{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、{{event("mousemove")}} イベントを処理する{{domxref("EventHandler" ,"イベントハンドラー")}}です。</p>

<p>ユーザーがマウスを移動すると、<code>mousemove</code> イベントが発生します。</p>

<h2 id="構文">構文</h2>

<pre class="syntaxbox notranslate"><em>target</em>.onmousemove = <em>functionRef</em>;
</pre>

<h3 id="値"></h3>

<p><code>functionRef</code> は、関数名または<a href="/docs/Web/JavaScript/Reference/Operators/function">関数式</a>です。 この関数は、唯一の引数として {{domxref("MouseEvent")}} オブジェクトを受け取ります。</p>

<h2 id="例"></h2>

<h3 id="ツールチップ">ツールチップ</h3>

<p>この例では、マウスに追従するリンクのツールチップを作成します。これは、<code>onmousemove</code>, {{domxref("GlobalEventHandlers.onmouseover", "onmouseover")}}, {{domxref("GlobalEventHandlers.onmouseout", "onmouseout")}} イベントハンドラーを使用します。</p>

<h4 id="HTML">HTML</h4>

<pre class="brush: html notranslate">&lt;p&gt;&lt;a href="#" data-tooltip="First link"&gt;See a tooltip here &amp;hellip;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="#" data-tooltip="Second link"&gt;&amp;hellip; or here!&lt;/a&gt;&lt;/p&gt;</pre>

<h4 id="CSS">CSS</h4>

<pre class="brush: css notranslate">.tooltip {
  position: absolute;
  z-index: 9999;
  padding: 6px;
  background: #ffd;
  border: 1px #886 solid;
  border-radius: 5px;
}</pre>

<h4 id="JavaScript">JavaScript</h4>

<pre class="brush: js notranslate">const tooltip = new (function() {
  const node = document.createElement('div');
  node.className = 'tooltip';
  node.setAttribute('hidden', '');
  document.body.appendChild(node);

  this.follow = function(event) {
    node.style.left = event.clientX + 20 + 'px';
    node.style.top = event.clientY + 10 + 'px';
  };

  this.show = function(event) {
    node.textContent = event.target.dataset.tooltip;
    node.removeAttribute('hidden');
  };

  this.hide = function() {
    node.setAttribute('hidden', '');
  };
})();

const links = document.querySelectorAll('a');

links.forEach(link =&gt; {
  link.onmouseover = tooltip.show;
  link.onmousemove = tooltip.follow;
  link.onmouseout = tooltip.hide;
});</pre>

<h4 id="結果">結果</h4>

<p>{{EmbedLiveSample("Tooltips")}}</p>

<h3 id="ドラッグ可能な要素">ドラッグ可能な要素</h3>

<p>また、ドラッグ可能なオブジェクトで <code>onmousemove</code> イベントハンドラーを使用する例も用意しています。<a href="https://mdn.mozillademos.org/files/5031/draggable_elements.html">実際の例をご覧ください</a></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-onmousemove','onmousemove')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザの互換性">ブラウザの互換性</h2>

<div>


<p>{{Compat("api.GlobalEventHandlers.onmousemove")}}</p>
</div>

<h2 id="関連情報">関連情報</h2>

<ul>
 <li>{{event("mousemove")}} event</li>
</ul>