CSSKeyframesRule.appendRule()

The appendRule() method of the CSSKeyframeRule interface appends a CSSKeyFrameRule to the end of the rules.

Syntax

CSSKeyframesRule.appendRule(rule);

Parameters

rule

A CSSOMString containing a keyframe rule.

Return value

None.

Example

The CSS includes a keyframes at-rule. This will be the first CSSRule returned by document.styleSheets[0].cssRules. myRules[0] returns a CSSKeyframesRule object. Returning the cssRules property would return a CSSRuleList containing one rule.

After appending another rule with appendRule the cssRules property returns a CSSRuleList containing two rules.

@keyframes slidein {
  from {
    transform: translateX(0%);
  }
}
let myRules = document.styleSheets[0].cssRules;
let keyframes = myRules[0]; // a CSSKeyframesRule
keyframes.appendRule('to {transform: translateX(100%);}');
console.log(keyframes.cssRules); // a CSSRuleList object with two rules

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
appendRule
41
1-45
12
22
5-22
10
28
15-31
12-15
9.1
4
41
1-45
41
18-45
22
5-22
28
14-32
12-14
9.3
3.2
4.0
1.0-5.0

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSSKeyframesRule/appendRule