diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/svgtransformable | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/svgtransformable')
-rw-r--r-- | files/ja/web/api/svgtransformable/index.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/files/ja/web/api/svgtransformable/index.html b/files/ja/web/api/svgtransformable/index.html new file mode 100644 index 0000000000..5683065157 --- /dev/null +++ b/files/ja/web/api/svgtransformable/index.html @@ -0,0 +1,73 @@ +--- +title: SVGTransformable +slug: Web/API/SVGTransformable +tags: + - API + - NeedsExample + - Reference + - Référence(2) + - SVG + - SVG DOM +translation_of: Web/API/SVGTransformable +--- +<div>{{APIRef("SVG")}}</div> + +<h2 id="SVG_transformable_interface">SVG transformable interface</h2> + +<p>インターフェイス <code>SVGTransformable</code> には、属性 {{ SVGAttr("transform") }}. を持つ全ての要素に適用されるプロパティとメソッドが含まれています。</p> + +<h3 id="インターフェイスの概要">インターフェイスの概要</h3> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="row">Also implement</th> + <td><em>無し</em></td> + </tr> + <tr> + <th scope="row">Methods</th> + <td><em>無し</em></td> + </tr> + <tr> + <th scope="row">Properties</th> + <td> + <ul> + <li>読み取り専用 {{ domxref("SVGAnimatedTransformList") }} <code>transform</code></li> + </ul> + </td> + </tr> + <tr> + <th scope="row">Normative document</th> + <td><a class="external" href="http://www.w3.org/TR/SVG11/types.html#InterfaceSVGTransformable" title="http://www.w3.org/TR/SVG11/types.html#InterfaceSVGTransformable">SVG 1.1 (2nd Edition)</a></td> + </tr> + </tbody> +</table> + +<h2 id="プロパティ">プロパティ</h2> + +<table class="standard-table"> + <thead> + <tr> + <th>名前</th> + <th>型</th> + <th>説明</th> + </tr> + </thead> + <tbody> + <tr> + <td><code>transform</code></td> + <td>{{ domxref("SVGAnimatedTransformList") }}</td> + <td>指定された要素の属性 {{ SVGAttr("transform") }} に対応します。</td> + </tr> + </tbody> +</table> + +<h2 id="メソッド">メソッド</h2> + +<p><code>SVGTransformable</code> インターフェイスは、特定のメソッドを提供しません。</p> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> + + + +<p>{{Compat("api.SVGTransformable")}}</p> |