aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/csskeyframesrule/appendrule/index.md
blob: 190ca3038ad9424a3188587cade11f083d35584b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
title: CSSKeyframesRule.appendRule()
slug: Web/API/CSSKeyframesRule/appendRule
tags:
  - API
  - CSSOM
  - CSSKeyframesRule
  - CSS アニメーション
  - メソッド
  - リファレンス
browser-compat: api.CSSKeyframesRule.appendRule
translation_of: Web/API/CSSKeyframesRule/appendRule
---
{{APIRef("CSSOM") }}

**`appendRule()`** は {{domxref("CSSKeyframeRule")}} インターフェイスのメソッドで、 {{domxref("CSSKeyFrameRule")}} をルールの末尾に追加します。

## 構文

```js
CSSKeyframesRule.appendRule(rule);
```

### 引数

- `rule`
  - : keyframe ルールを含む {{domxref("CSSOMString")}} です。

### 返値

なし。

## 例

この CSS には keyframes アットルールがあります。これは `document.styleSheets[0].cssRules` で返される最初の {{domxref("CSSRule")}} になります。
`myRules[0]` は {{domxref("CSSKeyframesRule")}} オブジェクトを返します。その `cssRules` プロパティは 1 つのルールの入った {{domxref("CSSRuleList")}} を返します。

`appendRule` でもう一つのルールを追加すると、 `cssRules` プロパティは 2 つのルールが入った {{domxref("CSSRuleList")}} を返します。

```css
@keyframes slidein {
  from {
    transform: translateX(0%);
  }
}
```

```js
let myRules = document.styleSheets[0].cssRules;
let keyframes = myRules[0]; // a CSSKeyframesRule
keyframes.appendRule('to {transform: translateX(100%);}');
console.log(keyframes.cssRules); // 2 つのルールが入った CSSRuleList オブジェクト
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}