Skip to content

Commit f159126

Browse files
committed
[web-animations-1] Fix linking to end time term
1 parent 1f7d4b3 commit f159126

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

web-animations-1/Overview.bs

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1569,7 +1569,8 @@ Waiting for the associated effect</h4>
15691569
In order to emulate this behavior,
15701570
and to provide consistency with HTML's [=media elements=] [[HTML]],
15711571
the [=animation/current time=] of Web Animations' animations
1572-
do not play forwards beyond the [=end time=] of their [=associated effect=]
1572+
do not play forwards beyond the
1573+
[=animation effect/end time=] of their [=associated effect=]
15731574
or play backwards past time zero.
15741575

15751576
An animation that has reached the natural boundary of its playback range
@@ -1601,7 +1602,7 @@ Waiting for the associated effect</h4>
16011602
This allows, for example, [=seeking=]
16021603
the [=animation/current time=] of an animation
16031604
with <em>no</em> [=associated effect=] to 5s.
1604-
If [=associated effect=] with an [=end time=] later than 5s
1605+
If [=associated effect=] with an [=animation effect/end time=] later than 5s
16051606
is later associated with the animation,
16061607
playback will begin from the 5s mark.
16071608

@@ -1629,7 +1630,7 @@ Waiting for the associated effect</h4>
16291630
until it reaches the [=associated effect end=].
16301631

16311632
The <dfn>associated effect end</dfn> of an animation
1632-
is equal to the [=end time=] of the animation's [=associated effect=].
1633+
is equal to the [=animation effect/end time=] of the animation's [=associated effect=].
16331634
If the animation has no [=associated effect=],
16341635
the [=associated effect end=] is zero.
16351636

@@ -2669,7 +2670,7 @@ Animation effects {#animation-effects}
26692670
Similar to the [=start delay=],
26702671
an [=animation effect=] also has an <dfn>end delay</dfn>,
26712672
which is primarily of use when sequencing one [=animation effect=]
2672-
based on the [=end time=] of another [=animation effect=].
2673+
based on the [=animation effect/end time=] of another [=animation effect=].
26732674

26742675
The <dfn for="animation effect">end time</dfn>,
26752676
of an [=animation effect=]
@@ -2710,7 +2711,8 @@ Animation effects {#animation-effects}
27102711
: [=animation effect/before phase=]
27112712
::
27122713
The [=animation effect=]’s [=local time=]
2713-
falls before the effect's [=active interval=] and [=end time=],
2714+
falls before
2715+
the effect's [=active interval=] and [=animation effect/end time=],
27142716
<em>or</em>
27152717
occurs during the range when a negative [=start delay=] is in effect.
27162718

@@ -2725,7 +2727,7 @@ Animation effects {#animation-effects}
27252727
::
27262728
The [=animation effect=]’s [=local time=] falls
27272729
after the effect's [=active interval=]
2728-
or after the [=end time=] if that comes first
2730+
or after the [=animation effect/end time=] if that comes first
27292731
(due to a negative [=end delay=]),
27302732
but <em>not</em> during the range when a negative [=start delay=]
27312733
is in effect.
@@ -2781,12 +2783,12 @@ Animation effects {#animation-effects}
27812783
: <dfn>before-active boundary time</dfn>
27822784
::
27832785
<code>max(min(<a>start delay</a>,
2784-
<a>end time</a>), 0)</code>
2786+
<a for="animation effect">end time</a>), 0)</code>
27852787

27862788
: <dfn>active-after boundary time</dfn>
27872789
::
27882790
<code>max(min(<a>start delay</a> + <a>active duration</a>,
2789-
<a>end time</a>), 0)</code>
2791+
<a for="animation effect">end time</a>), 0)</code>
27902792

27912793
An [=animation effect=] is in the
27922794
<dfn export for="animation effect">before phase</dfn>
@@ -5179,7 +5181,7 @@ The {{AnimationEffect}} interface {#the-animationeffect-interface}
51795181
The [=end delay=],
51805182
which represents the number of milliseconds
51815183
from the end of an [=animation effect=]’s [=active interval=]
5182-
until its [=end time=].
5184+
until its [=animation effect/end time=].
51835185

51845186
: <dfn>fill</dfn>
51855187
::
@@ -5407,7 +5409,7 @@ The {{AnimationEffect}} interface {#the-animationeffect-interface}
54075409

54085410
: <dfn>endTime</dfn>
54095411
::
5410-
The [=end time=] of the [=animation effect=]
5412+
The [=animation effect/end time=] of the [=animation effect=]
54115413
expressed in milliseconds since zero [=local time=]
54125414
(that is, since the associated [=animation=]’s [=start time=]
54135415
if this [=animation effect=] is [=associated with an animation=]).

0 commit comments

Comments
 (0)