aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/csskeyframerule/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/csskeyframerule/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/csskeyframerule/index.html')
-rw-r--r--files/ja/web/api/csskeyframerule/index.html111
1 files changed, 111 insertions, 0 deletions
diff --git a/files/ja/web/api/csskeyframerule/index.html b/files/ja/web/api/csskeyframerule/index.html
new file mode 100644
index 0000000000..38cf3651f8
--- /dev/null
+++ b/files/ja/web/api/csskeyframerule/index.html
@@ -0,0 +1,111 @@
+---
+title: CSSKeyframeRule
+slug: Web/API/CSSKeyframeRule
+tags:
+ - API
+ - CSS Animations
+ - CSSOM
+ - Experimental
+ - Interface
+ - Reference
+translation_of: Web/API/CSSKeyframeRule
+---
+<div>{{APIRef("CSSOM")}}{{SeeCompatTable}}</div>
+
+<p><strong><code>CSSKeyframeRule</code></strong> インターフェイスは、指定された keyframe のスタイルセットを表すオブジェクトを提供します。<a href="/ja/docs/CSS/At-rule">@-規則</a> の {{cssxref("@keyframes")}} の 1 つのキーフレームに対応しています。これはタイプ値 8 (<code>CSSRule.KEYFRAME_RULE</code>) の {{domxref("CSSRule")}} インターフェイスを実装しています。</p>
+
+<h2 id="プロパティ">プロパティ</h2>
+
+<p>{{domxref("CSSRule")}} のように、<code>CSSKeyframeRule</code> もそのインターフェイスから継承したプロパティを実装しています。独自プロパティも 2 つ実装しています:</p>
+
+<dl>
+ <dt>{{domxref("CSSKeyframe.keyText")}}</dt>
+ <dd><code>'10%'</code> や <code>'75%'</code> のように、keyframe のキーを表す。<code>from</code> キーワードは <code>'0%'</code> にマッピングされ、<code>to</code> キーワードは <code>'100%'</code> にマッピングされる。</dd>
+ <dt id="cssRules">{{domxref("CSSKeyframe.style")}}  {{readOnlyInline}}</dt>
+ <dd>keyfrom に関連した CSS スタイルの {{domxref("CSSStyleDeclaration")}} を返す。</dd>
+</dl>
+
+<h2 id="メソッド">メソッド</h2>
+
+<p>{{domxref("CSSRule")}} のように、<code>CSSKeyframeRule</code> もそのインターフェイスのメソッドを継承しています。独自のメソッドはありません。</p>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('CSS3 Animations', '#CSSKeyframeRule-interface', 'CSSKeyframeRule')}}</td>
+ <td>{{Spec2('CSS3 Animations')}}</td>
+ <td>初期定義。</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザ実装状況">ブラウザ実装状況</h2>
+
+<p>{{CompatibilityTable}}</p>
+
+<div id="compat-desktop">
+<table class="compat-table">
+ <tbody>
+ <tr>
+ <th>機能</th>
+ <th>Chrome</th>
+ <th>Firefox (Gecko)</th>
+ <th>Internet Explorer</th>
+ <th>Opera</th>
+ <th>Safari (WebKit)</th>
+ </tr>
+ <tr>
+ <td>基本サポート</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatGeckoDesktop("5.0")}} {{property_prefix("-moz")}}<br>
+ {{CompatGeckoDesktop(48)}}</td>
+ <td>10</td>
+ <td>12 {{property_prefix("-o")}}<br>
+ 12.50<sup>[1]</sup></td>
+ <td>4.0</td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<div id="compat-mobile">
+<table class="compat-table">
+ <tbody>
+ <tr>
+ <th>機能</th>
+ <th>Android</th>
+ <th>Firefox Mobile (Gecko)</th>
+ <th>IE Phone</th>
+ <th>Opera Mobile</th>
+ <th>Safari Mobile</th>
+ </tr>
+ <tr>
+ <td>基本サポート</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatGeckoDesktop("5.0")}} {{property_prefix("-moz")}}<br>
+ {{CompatGeckoDesktop(48)}}</td>
+ <td>{{CompatUnknown}}</td>
+ <td>{{CompatUnknown}}</td>
+ <td>{{CompatUnknown}}</td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<p>[1] See <a href="http://my.opera.com/ODIN/blog/2012/08/03/a-hot-opera-12-50-summer-time-snapshot">Opera 12.50 のブログ投稿</a> をご覧ください。</p>
+
+<h2 id="関連項目">関連項目</h2>
+
+<ul>
+ <li>{{cssxref("@keyframes")}}</li>
+ <li>{{domxref("CSSKeyFramesRule")}}</li>
+</ul>