Class CSSKeyframesRule
CSS keyframes rule representation.
public sealed record CSSKeyframesRule : IEquatable<CSSKeyframesRule>
- Inheritance
-
CSSKeyframesRule
- Implements
- Inherited Members
Constructors
CSSKeyframesRule(Value, ImmutableArray<CSSKeyframeRule>)
CSS keyframes rule representation.
public CSSKeyframesRule(Value AnimationName, ImmutableArray<CSSKeyframeRule> Keyframes)
Parameters
AnimationNameValueAnimation name.
KeyframesImmutableArray<CSSKeyframeRule>List of keyframes.
Properties
AnimationName
Animation name.
public Value AnimationName { get; init; }
Property Value
Keyframes
List of keyframes.
public ImmutableArray<CSSKeyframeRule> Keyframes { get; init; }