Expand description
Keyframes: https://drafts.csswg.org/css-animations/#keyframes
Structs§
- Keyframe
- A keyframe.
- Keyframe
List 🔒Parser - Parses a keyframes list, like: 0%, 50% { width: 50%; }
- Keyframe
Percentage - A number from 0 to 1, indicating the percentage of the animation when this keyframe should run.
- Keyframe
Selector - A single
<keyframe-selector>:<keyframe-selector> = from | to | <percentage [0,100]> | <timeline-range-name> <percentage>It could be a percentage, from/to, or a timeline range name together with a percentage. https://drafts.csswg.org/scroll-animations-1/#named-range-keyframes - Keyframe
Selectors - A list of
<keyframe-selector>s. - Keyframes
Animation - This structure represents a list of animation steps computed from the list of keyframes, in order.
- Keyframes
Rule - A
@keyframesrule. - Keyframes
Step - A single step from a keyframe animation.
Enums§
- Keyframes
Step Value - A keyframes step value. This can be a synthetised keyframes animation, that is, one autogenerated from the current computed values, or a list of declarations to apply.
Functions§
- get_
animated_ 🔒properties - Get all the animated properties in a keyframes animation.
- parse_
keyframe_ list - Parses a keyframe list from CSS input.