aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/domhighrestimestamp
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/zh-cn/web/api/domhighrestimestamp
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/api/domhighrestimestamp')
-rw-r--r--files/zh-cn/web/api/domhighrestimestamp/index.html167
1 files changed, 167 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/domhighrestimestamp/index.html b/files/zh-cn/web/api/domhighrestimestamp/index.html
new file mode 100644
index 0000000000..ebbce5eb26
--- /dev/null
+++ b/files/zh-cn/web/api/domhighrestimestamp/index.html
@@ -0,0 +1,167 @@
+---
+title: DOMHighResTimeStamp
+slug: Web/API/DOMHighResTimeStamp
+tags:
+ - DOMHighResTimeStamp
+ - High Resolution Time
+translation_of: Web/API/DOMHighResTimeStamp
+---
+<p>{{APIRef("High Resolution Time")}}</p>
+
+
+
+<p><code><strong>DOMHighResTimeStamp</strong></code> 是一个double类型,用于存储毫秒级的时间值。这种类型可以用来描述离散的时间点或者一段时间(两个离散时间点之间的时间差)。</p>
+
+<p>这种基于毫秒精度的时间,应该精确到5微秒级别,其数值的小数部分代表了一个毫秒的小数(也就是微秒)。但是,如果浏览器不能提供精确到5微秒的时间值(例如,由于硬件或软件的限制),浏览器可以在表示一个以毫秒为单位的时间值时,精确到毫秒级别。同时要注意,在下一节中提到,由浏览器首选项控制的<strong>降低时间精度,</strong>是为了防止时序攻击和记录指纹。</p>
+
+<p>此外,如果用户代理运行所在的设备或操作系统不具备精确到微秒级别的时钟,那么他们只能精确到毫秒。</p>
+
+<h2 id="降低时间精度">降低时间精度</h2>
+
+<p><em></em><br>
+ 为了提供对抗时序攻击和记录指纹的保护措施,时间戳可能会四舍五入,这取决于浏览器设置。在火狐浏览器中,<code>privacy.reduceTimerPrecision</code> 首选项默认被启用,并且在或火狐浏览器59版本中,它的默认值是20微秒。在火狐浏览器60版本中,这个默认值将是2毫秒。</p>
+
+<pre class="notranslate">// reduced time precision (2ms) in Firefox 60
+event.timeStamp
+// 1519211809934
+// 1519211810362
+// 1519211811670
+// ...
+
+
+// reduced time precision with `privacy.resistFingerprinting` enabled
+event.timeStamp;
+// 1519129853500
+// 1519129858900
+// 1519129864400
+// ...</pre>
+
+<p>在火狐浏览器中,你也可以启用 <code>privacy.resistFingerprinting</code> ,这使得时间戳的精度变成100毫秒或 <code>privacy.resistFingerprinting.reduceTimerPrecision.microseconds</code> 的值,以较大者为准。</p>
+
+<h2 id="属性">属性</h2>
+
+<p><em>这个类型没有属性。它是一个双精度浮点数。</em></p>
+
+<h3 id="值">值</h3>
+
+<p><code>DOMHighResTimeStamp</code> 的值是一个双精度浮点数,它描述了两个时间点之间的经过的毫秒数(可以精确到5微秒,如果设备支持)。开始时间可以是由网站或app中的脚本定义的一个特定时间T,也可以是<strong>时间源</strong>。</p>
+
+<h4 id="时间源">时间源</h4>
+
+<p><strong>时间源</strong>是一个可以被认定为当前文档生命周期的开始节点的标准时间,计算方法如下:</p>
+
+<ul>
+ <li>如果脚本的 {{Glossary("global object")}} 是 {{domxref("Window")}}, 则时间源的确定方式如下:
+ <ul>
+ <li>如果当前 {{domxref("Document")}} 是中加载的第一个 <code>Window</code>, 则<strong>时间源</strong>是创建浏览器上下文的时间。</li>
+ <li>如果处于卸载窗口中已加载的先前文档的过程中,​​一个确认对话框会显示出来,让用户确认是否离开前一页,则<strong>时间源</strong>是用户确认导航到新页面的这个时间,这一点是被认同的。</li>
+ <li>如果以上方式都不能确定<strong>时间源</strong>, 那么<strong>时间源</strong>是创建窗口中当前 <code>Document</code> 的导航发生的时机。</li>
+ </ul>
+ </li>
+ <li>如果脚本中的全局对象是 {{domxref("WorkerGlobalScope")}} (意味着, 该脚本以web worker的形式运行), 则<strong>时间源</strong>是这个worker被创建的时刻。 </li>
+ <li>在所有其他情况下, <strong>时间源</strong>的值是undefined。</li>
+</ul>
+
+<h2 id="方法">方法</h2>
+
+<p><em>这个类型没有方法。</em></p>
+
+<h2 id="用法说明">用法说明</h2>
+
+<p>您可以通过调用 {{domxref("performance")}} 的 {{domxref("performance.now", "now()")}} 方法来获取当前的时间戳的值(自创建上下文以来经过的时间)。此方法在 {{domxref("Window")}} 和 {{domxref("Worker")}} 上下文中均可用.</p>
+
+<h2 id="示例">示例</h2>
+
+<p>如果你需要确定从代码中某处开始经过了多少时间,可以执行以下操作:</p>
+
+<pre class="notranslate">let startTime = performance.now();
+
+/* ... do things for a while ... */
+
+let elapsedTime = performance.now() - startTime;
+</pre>
+
+<p>执行完毕后,  <code>elapsedTime</code> 的值是从你在第一行代码记录的时间点开始后经过的毫秒数。</p>
+
+<h2 id="Specifications" name="Specifications">规范</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comment</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('Highres Time Level 2', '#dom-domhighrestimestamp', 'DOMHighResTimeStamp')}}</td>
+ <td>{{Spec2('Highres Time Level 2')}}</td>
+ <td>Stricter definitions of interfaces and types.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Highres Time', '#sec-DOMHighResTimeStamp', 'DOMHighResTimeStamp')}}</td>
+ <td>{{Spec2('Highres Time')}}</td>
+ <td>Initial definition.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容性</h2>
+
+<div>{{CompatibilityTable}}</div>
+
+<div id="compat-desktop">
+<table class="compat-table">
+ <tbody>
+ <tr>
+ <th>Feature</th>
+ <th>Chrome</th>
+ <th>Firefox (Gecko)</th>
+ <th>Internet Explorer</th>
+ <th>Opera</th>
+ <th>Safari (WebKit)</th>
+ </tr>
+ <tr>
+ <td>Basic support</td>
+ <td>6</td>
+ <td>{{CompatGeckoDesktop("7.0")}}</td>
+ <td>9</td>
+ <td>15.0</td>
+ <td>8</td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<div id="compat-mobile">
+<table class="compat-table">
+ <tbody>
+ <tr>
+ <th>Feature</th>
+ <th>Android</th>
+ <th>Firefox Mobile (Gecko)</th>
+ <th>IE Phone</th>
+ <th>Opera Mobile</th>
+ <th>Safari Mobile</th>
+ </tr>
+ <tr>
+ <td>Basic support</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatGeckoMobile("15.0")}}</td>
+ <td>9</td>
+ <td>15.0</td>
+ <td>9</td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<h2 id="相关内容">相关内容</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Navigation_timing" title="/en-US/docs/Navigation_timing">Navigation Timing API</a></li>
+ <li><a href="/en-US/docs/Web/API/Performance/now">Performance.now()</a></li>
+ <li><a href="https://www.w3.org/TR/hr-time/#sec-DOMHighResTimeStamp">https://www.w3.org/TR/hr-time/#sec-DOMHighResTimeStamp</a></li>
+ <li><a href="https://www.w3.org/TR/hr-time-2/">https://www.w3.org/TR/hr-time-2/</a></li>
+</ul>