Module style::stylesheets::keyframes_rule
source · Expand description
Keyframes: https://drafts.csswg.org/css-animations/#keyframes
Structs§
- A keyframe.
- Parses a keyframes list, like: 0%, 50% { width: 50%; }
- A number from 0 to 1, indicating the percentage of the animation when this keyframe should run.
- A keyframes selector is a list of percentages or from/to symbols, which are converted at parse time to percentages.
- This structure represents a list of animation steps computed from the list of keyframes, in order.
- A
@keyframes
rule. - A single step from a keyframe animation.
Enums§
- 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 all the animated properties in a keyframes animation.
- Parses a keyframe list from CSS input.