8000 [css-animations-2] Specify the animation-trigger property by ydaniv · Pull Request #10128 · w3c/csswg-drafts · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
133f6e0
[css-animations-2] Specify the animation-trigger property
ydaniv Mar 25, 2024
f3a49ba
Fixed syntax of single-animation-trigger + some link fixes
ydaniv Mar 25, 2024
cbd4f07
More fixes to links and defs
ydaniv Mar 27, 2024
9f6464a
More fixes to links and defs
ydaniv Mar 28, 2024
912426a
Move all definitions to web-animations-1;
ydaniv Apr 17, 2024
9ae1a13
Fixed idle state definition for animation trigger state
ydaniv Apr 18, 2024
f1d2e89
Moved all new definitions from web-animations-1 to web-animations-2
ydaniv May 11, 2024
e55e476
Added a description to each property of animation-trigger;
ydaniv Jun 2, 2024
a0e90fe
Fixed some syntax errors
ydaniv Jun 6, 2024
361f5d9
Added an issue about timeline becoming idle and did-trigger resetting…
ydaniv Jun 6, 2024
efa38c7
Define animation trigger active interval
ydaniv Jun 6, 2024
085618e
Merge from main
ydaniv Jun 6, 2024
11e3138
Rewrite again according to review
ydaniv Jul 31, 2024
7777ac1
Added the AnimationTrigger interface;
ydaniv Aug 19, 2024
e3554e3
Update css-animations-2/Overview.bs
ydaniv Sep 29, 2024
cef7a04
Update css-animations-2/Overview.bs
ydaniv Sep 29, 2024
079135c
Update css-animations-2/Overview.bs
ydaniv Sep 29, 2024
65b0533
Removed reset of did trigger to false;
ydaniv Sep 29, 2024
5f2615b
Added missing attribute definition for animation trigger
ydaniv Nov 1, 2024
4109b39
Fixed the procedure of updating trigger state to be initially idle an…
ydaniv Nov 23, 2024
c8eb479
Add note to Animation Frames about running the updating animation tri…
ydaniv Nov 23, 2024
6a6bf45
Added algorythm for Setting a Trigger of an Animation;
ydaniv Jan 26, 2025
c74c5c3
Merge branch 'main' into animation-trigger
ydaniv Jan 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed idle state definition for animation trigger state
  • Loading branch information
ydaniv committed Apr 18, 2024
commit 9ae1a135aa0354596ec0a5b952c5077583b9dae8
7 changes: 4 additions & 3 deletions web-animations-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3555,21 +3555,22 @@ Issue: Should there be any effect of triggers on scroll-driven animations?
### Animation Trigger State ### {#trigger-state}

An [=animation trigger=] |trigger| with [=animation trigger type=] |type|
and an associated [=animation=] |animation|
has an internal <dfn export lt="animation trigger state">state</dfn> that can be one of the following:

<dl dfn-for="animation trigger state" dfn-type=value>
<dt><dfn>idle</dfn>
<dd>
The [=animation effect=] associated with |trigger| remains in
The [=animation effect=] associated |animation| remains in
its [=animation effect/before phase=] and stays at zero [=animation/start time=].

<dt><dfn>primary</dfn>
<dd>
The ''primary'' effect defined by |type| is applied to its associated [=animation=].
The ''primary'' effect defined by |type| is applied to |animation|.

<dt><dfn>inverse</dfn>
<dd>
The ''inverse'' effect defined by |type| is applied to its associated [=animation=].
The ''inverse'' effect defined by |type| is applied to |animation|.

</dl>

Expand Down
0