diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/documentorshadowroot/mselementsfromrect | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/documentorshadowroot/mselementsfromrect')
-rw-r--r-- | files/ja/web/api/documentorshadowroot/mselementsfromrect/index.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/files/ja/web/api/documentorshadowroot/mselementsfromrect/index.html b/files/ja/web/api/documentorshadowroot/mselementsfromrect/index.html new file mode 100644 index 0000000000..57d9c2b7b7 --- /dev/null +++ b/files/ja/web/api/documentorshadowroot/mselementsfromrect/index.html @@ -0,0 +1,54 @@ +--- +title: DocumentOrShadowRoot.msElementsFromRect() +slug: Web/API/DocumentOrShadowRoot/msElementsFromRect +tags: + - API + - 'API:Microsoft Extensions' + - Method + - Non-standard + - Reference + - msElementsFromRect +translation_of: Web/API/DocumentOrShadowRoot/msElementsFromRect +--- +<div>{{APIRef("Microsoft Extensions")}}{{Non-standard_Header}}</div> + +<p><strong><code>msElementsFromRect</code></strong> メソッドは、left、 top、 width、 heighで定義された四角形の下にある要素のノードリストを返します。</p> + +<p>この独自プロパティは Internet Explorer と Microsoft Edge に固有のものです。</p> + +<h2 id="構文">構文</h2> + +<pre class="syntaxbox notranslate"><em>object</em>.msElementsFromRect(left, top, width, height, retVal) +</pre> + +<h3 id="パラメータ">パラメータ</h3> + +<dl> + <dt><em>left </em>[in]</dt> + <dd>型: <strong>浮動小数点</strong></dd> + <dt><em>top</em>[in]</dt> + <dd>型: <strong>浮動小数点</strong></dd> + <dt><em>width</em>[in]</dt> + <dd>型: <strong>浮動小数点</strong></dd> + <dt><em>height </em>[in]</dt> + <dd>型: <strong>浮動小数点</strong></dd> + <dt><em>retVal </em>[out, reval]</dt> + <dd>型: <strong>ノードリスト</strong></dd> +</dl> + +<h2 id="例">例</h2> + +<p>特定のポイントの下にある全ての要素を検索するには、 <code>msElementsFromPoint(x, y)</code> を使用します。長方形を交差する全ての要素を見つけるには、 <code>msElementsFromRect(top, left, width, height)</code> を使用します。</p> + +<pre class="brush: js notranslate">var nodeList = document.msElementsFromRect(x,y,width,height) +var nodeList = document.msElementsFromPoint(x,y) +</pre> + +<p>返された nodeList には z-index でソートされているため、要素の相対的なスタック順序を確認できます。</p> + +<h2 id="See_Also" name="See_Also">関連項目</h2> + +<ul> + <li><a href="https://testdrive-archive.azurewebsites.net/HTML5/HitTest/Default.html">Advanced Hit Testing APIs Demo for msElementsFromPoint() and msElementsFromRect() </a></li> + <li><a href="/en-US/docs/Web/API/Microsoft_API_extensions">Microsoft API extensions </a></li> +</ul> |