blob: 56830651575223bbb52b96169c9a360ec9cfda71 (
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
62
63
64
65
66
67
68
69
70
71
72
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>
|