aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/globaleventhandlers/onmousemove
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/globaleventhandlers/onmousemove
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/globaleventhandlers/onmousemove')
-rw-r--r--files/ja/web/api/globaleventhandlers/onmousemove/index.html118
1 files changed, 118 insertions, 0 deletions
diff --git a/files/ja/web/api/globaleventhandlers/onmousemove/index.html b/files/ja/web/api/globaleventhandlers/onmousemove/index.html
new file mode 100644
index 0000000000..7a3e4a8764
--- /dev/null
+++ b/files/ja/web/api/globaleventhandlers/onmousemove/index.html
@@ -0,0 +1,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>