CSSKeyframesRule extension type

The CSSKeyframesRule interface describes an object representing a complete set of keyframes for a CSS animation. It corresponds to the contents of a whole at-rule.


API documentation sourced from MDN Web Docs.

on
Implemented types
Available extensions

Properties

cssRules CSSRuleList
The read-only cssRules property of the CSSKeyframeRule interface returns a CSSRuleList containing the rules in the keyframes at-rule.
no setter
cssText String
The cssText property of the CSSRule interface returns the actual text of a CSSStyleSheet style-rule.
getter/setter pairinherited
hashCode int
The hash code for this object.
no setterinherited
length int
no setter
name String
The name property of the CSSKeyframeRule interface gets and sets the name of the animation as used by the property.
getter/setter pair
parentRule CSSRule?
The parentRule property of the CSSRule interface returns the containing rule of the current rule if this exists, or otherwise returns null.
no setterinherited
parentStyleSheet CSSStyleSheet?
The parentStyleSheet property of the CSSRule interface returns the StyleSheet object in which the current rule is defined.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type int
The read-only type property of the CSSRule interface is a deprecated property that returns an integer indicating which type of rule the CSSRule represents.
no setterinherited

Methods

appendRule(String rule) → void
The appendRule() method of the CSSKeyframeRule interface appends a CSSKeyFrameRule to the end of the rules.
deleteRule(String select) → void
The deleteRule() method of the CSSKeyframeRule interface deletes the CSSKeyFrameRule that matches the specified keyframe selector.
findRule(String select) CSSKeyframeRule?
The findRule() method of the CSSKeyframeRule interface finds the CSSKeyFrameRule that matches the specified keyframe selector.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](int index) CSSKeyframeRule