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/gamepad/timestamp | |
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/gamepad/timestamp')
-rw-r--r-- | files/ja/web/api/gamepad/timestamp/index.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/files/ja/web/api/gamepad/timestamp/index.html b/files/ja/web/api/gamepad/timestamp/index.html new file mode 100644 index 0000000000..6f7aeaba05 --- /dev/null +++ b/files/ja/web/api/gamepad/timestamp/index.html @@ -0,0 +1,61 @@ +--- +title: Gamepad.timestamp +slug: Web/API/Gamepad/timestamp +tags: + - API + - Gamepad API + - Games + - NeedsBetterSpecLink + - NeedsMarkupWork + - Property + - Reference + - Référence(2) +translation_of: Web/API/Gamepad/timestamp +--- +<div>{{APIRef("Gamepad API")}}</div> + +<p>{{domxref("Gamepad")}} インターフェースの <strong><code>Gamepad.timestamp</code></strong> プロパティは、このゲームパッドのデータが最後に更新された時刻を表す {{domxref("DOMHighResTimeStamp")}} を返します。</p> + +<p>このプロパティの背景にある考え方は、ハードウェアにより <code>axes</code> や <code>button</code> のデータが更新されたかどうかを開発者が判断できるようにすることです。このプロパティの値は <code>{{domxref("PerformanceTiming")}}</code> インターフェースの <code>navigationStart</code> 属性との相対的な値になります。値は単調増加しています。つまり、新しい値は常に古い値以上であるため、新旧の値を比較することでデータの更新を判断できます。</p> + +<div class="note"> +<p><strong>注釈</strong>: このプロパティは現在サポートされていない環境があります。</p> +</div> + +<h2 id="構文">構文</h2> + +<pre class="syntaxbox notranslate"><span class="idlInterface" id="idl-def-Gamepad"><span class="idlAttribute">readonly attribute <span class="idlAttrType">DOMHighResTimeStamp</span> <span class="idlAttrName">timestamp</span>;</span></span></pre> + +<h2 id="例">例</h2> + +<pre class="brush: js notranslate">var gp = navigator.getGamepads()[0]; +console.log(gp.timestamp);</pre> + +<h2 id="値">値</h2> + +<p>{{domxref("DOMHighResTimeStamp")}} 。</p> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">状態</th> + <th scope="col">コメント</th> + </tr> + <tr> + <td>{{SpecName("Gamepad", "#dom-gamepad-timestamp", "Gamepad.timestamp")}}</td> + <td>{{Spec2("Gamepad")}}</td> + <td>初版</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザの互換性">ブラウザの互換性</h2> + +<p>{{Compat("api.Gamepad.timestamp")}}</p> + +<h2 id="参照">参照</h2> + +<p><a href="/ja/docs/Web/Guide/API/Gamepad">ゲームパッド API の使用</a></p> |