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 keyframes selector is a list of percentages or from/to symbols, which are converted at parse time to percentages.
- Keyframes
Animation - This structure represents a list of animation steps computed from the list of keyframes, in order.
- Keyframes
Rule - A
@keyframes
rule. - 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.