Interface CSSKeyframesRule
interface CSSKeyframesRule {
CHARSET_RULE: 2;
COUNTER_STYLE_RULE: 11;
cssRules: CSSRuleList;
cssText: string;
FONT_FACE_RULE: 5;
FONT_FEATURE_VALUES_RULE: 14;
IMPORT_RULE: 3;
KEYFRAME_RULE: 8;
KEYFRAMES_RULE: 7;
length: number;
MEDIA_RULE: 4;
name: string;
NAMESPACE_RULE: 10;
PAGE_RULE: 6;
parentRule: CSSRule;
parentStyleSheet: CSSStyleSheet;
STYLE_RULE: 1;
SUPPORTS_RULE: 12;
type: number;
[iterator](): ArrayIterator<CSSKeyframeRule>;
appendRule(rule: string): void;
deleteRule(select: string): void;
findRule(select: string): CSSKeyframeRule;
[index: number]: CSSKeyframeRule;
}
CHARSET_RULE: 2;
COUNTER_STYLE_RULE: 11;
cssRules: CSSRuleList;
cssText: string;
FONT_FACE_RULE: 5;
FONT_FEATURE_VALUES_RULE: 14;
IMPORT_RULE: 3;
KEYFRAME_RULE: 8;
KEYFRAMES_RULE: 7;
length: number;
MEDIA_RULE: 4;
name: string;
NAMESPACE_RULE: 10;
PAGE_RULE: 6;
parentRule: CSSRule;
parentStyleSheet: CSSStyleSheet;
STYLE_RULE: 1;
SUPPORTS_RULE: 12;
type: number;
[iterator](): ArrayIterator<CSSKeyframeRule>;
appendRule(rule: string): void;
deleteRule(select: string): void;
findRule(select: string): CSSKeyframeRule;
[index: number]: CSSKeyframeRule;
}
Indexable
Properties
Readonly
CHARSET_RULE
CHARSET_RULE : 2
Readonly
COUNTER_STYLE_RULE
COUNTER_STYLE_RULE : 11
Readonly
cssRules
cssText
cssText : string
Readonly
FONT_FACE_RULE
FONT_FACE_RULE : 5
Readonly
FONT_FEATURE_VALUES_RULE
FONT_FEATURE_VALUES_RULE : 14
Readonly
IMPORT_RULE
IMPORT_RULE : 3
Readonly
KEYFRAME_RULE
KEYFRAME_RULE : 8
Readonly
KEYFRAMES_RULE
KEYFRAMES_RULE : 7
Readonly
length
length: number
Readonly
MEDIA_RULE
MEDIA_RULE : 4
name
name: string
Readonly
NAMESPACE_RULE
NAMESPACE_RULE : 10
Readonly
PAGE_RULE
PAGE_RULE : 6
Readonly
parentRule
Readonly
parentStyleSheet
Readonly
STYLE_RULE
STYLE_RULE : 1
Readonly
SUPPORTS_RULE
SUPPORTS_RULE : 12
Readonly
type
type: number
Methods
[iterator]
- [iterator](): ArrayIterator<CSSKeyframeRule>
Returns ArrayIterator<CSSKeyframeRule>
appendRule
deleteRule
findRule
- find
Rule (select): CSSKeyframeRule Parameters
- select: string
Returns CSSKeyframeRule
A single CSS rule. There are several types of rules, listed in the Type constants section below.
MDN Reference