aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/document/timeline/index.html
blob: 387e6c7e3be46e47aa985bc9070ef3f21a2dddee (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
---
title: Document.timeline
slug: Web/API/Document/timeline
tags:
  - API
  - Animation
  - Document
  - Property
  - 属性
  - 文档
translation_of: Web/API/Document/timeline
---
<div>{{ SeeCompatTable() }}{{ APIRef("Web Animations") }}</div>

<p>{{domxref("Document")}} 接口的 <code>timeline</code> 只读属性表示当前文档的默认时间轴。 此时间轴是 {{domxref("DocumentTimeline")}} 的一个特殊实例,它会在网页加载时自动创建。</p>

<p>此时间轴对于每个文档(<code>document</code>)来说都是唯一的,并在文档的生命周期中保持不变,包括调用 {{domxref("Document.open()")}}</p>

<p>该时间线的时间值被计算为与全局时钟的固定偏移,使得零时间对应于{{domxref("PerformanceTiming.navigationStart", "navigationStart")}}时刻加上称为原始时间的带符号的delta 。 在建立导航开始时刻之前,文档时间线是不活动的。</p>

<div class="note">
<p><strong>注意:</strong>与非活动文档相关联的文档时间轴也被视为是<strong>不活动的</strong></p>
</div>

<h2 id="语法">语法</h2>

<div class="syntaxbox">
<pre class="brush: js">var pageTimeline = document.timeline;
var thisMoment = pageTimeline.currentTime;</pre>
</div>

<h3 id="值"></h3>

<p>一个 {{domxref("DocumentTimeline")}} 对象。</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('Web Animations', '#dom-document-timeline', 'document.timeline' )}}</td>
   <td>{{Spec2('Web Animations')}}</td>
   <td>Editor's draft.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>



<p>{{Compat("api.Document.timeline")}}</p>

<h2 id="参见">参见</h2>

<ul>
 <li><a href="/zh-CN/docs/Web/API/Web_Animations_API">Web Animations API</a></li>
 <li>{{domxref("AnimationTimeline")}}</li>
 <li>{{domxref("AnimationTimeline.currentTime")}}</li>
 <li>{{domxref("DocumentTimeline")}}</li>
</ul>