aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/svg/element/animatemotion/index.html
blob: 87c3ae12e81435547fc0fd5039266c729c2c0f2b (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
---
title: animateMotion
slug: Web/SVG/Element/animateMotion
tags:
  - Element
  - SVG
  - SVG Animation
translation_of: Web/SVG/Element/animateMotion
---
<div>{{SVGRef}}</div>

<p>SVG の <strong><code>&lt;animateMotion&gt;</code></strong> 要素は、ある要素がモーションパスに沿って移動する方法を定義します。</p>

<div class="blockIndicator note">
<p><strong>注:</strong> 既存のパスを再利用するには、 <code>&lt;animateMotion&gt;</code> 要素内の {{SVGElement("mpath")}} 要素を {{SVGAttr("path")}} 属性の代わりに使用する必要があります。</p>
</div>

<div id="Exemple">
<div class="hidden">
<pre class="brush: css notranslate">html,body,svg { height:100%; margin: 0; padding: 0; display:block; }</pre>
</div>

<pre class="brush: html; highlight[6,7] notranslate">&lt;svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"&gt;
  &lt;path fill="none" stroke="lightgrey"
    d="M20,50 C20,-50 180,150 180,50 C180-50 20,150 20,50 z" /&gt;

  &lt;circle r="5" fill="red"&gt;
    &lt;animateMotion dur="10s" repeatCount="indefinite"
      path="M20,50 C20,-50 180,150 180,50 C180-50 20,150 20,50 z" /&gt;
  &lt;/circle&gt;
&lt;/svg&gt;</pre>

<p>{{EmbedLiveSample('Exemple', 150, '100%')}}</p>
</div>

<h2 id="Usage_context" name="Usage_context">使用場面</h2>

<p>{{svginfo}}</p>

<h2 id="Attributes" name="Attributes">属性</h2>

<dl>
 <dt id="attr-cx">{{SVGAttr("keyPoints")}}</dt>
 <dd>この属性は [0,1] の範囲で、それぞれの {{SVGAttr("keyTimes")}} に関連付けられた値に対して、パスに沿ってオブジェクトがどのくらいの距離にあるかを示します。<br>
 <small><em>値の型</em><a href="/ja/docs/Web/SVG/Content_type#Number"><strong>&lt;number&gt;</strong></a>*; <em>Default value</em>: none; <em>Animatable</em>: <strong>no</strong></small></dd>
 <dt id="attr-cx">{{SVGAttr("path")}}</dt>
 <dd>この属性は、 {{SVGAttr('d')}} 属性と同じ構文を使用して、モーションパスを定義します。<br>
 <small><em>値の型</em><strong>&lt;string&gt;</strong>; <em>Default value</em>: none; <em>Animatable</em>: <strong>no</strong></small></dd>
 <dt id="attr-cx">{{SVGAttr("rotate")}}</dt>
 <dd>この属性は、パスに沿ってアニメーションされた要素に適用される回転を定義します。<br>
 <small><em>値の型</em><a href="/ja/docs/Web/SVG/Content_type#Number"><strong>&lt;number&gt;</strong></a>|<code>auto</code>|<code>auto-reverse</code>; <em>Default value</em>: <code>0</code>; <em>Animatable</em>: <strong>no</strong></small></dd>
</dl>

<div class="blockIndicator note">
<p><strong>注:</strong> <code>&lt;animateMotion&gt;</code> においては、 {{SVGAttr("calcMode")}} 属性の既定値は <code>paced</code> です。</p>
</div>

<h3 id="Animation_Attributes" name="Animation_Attributes">アニメーション属性</h3>

<dl>
 <dt><a href="/ja/docs/Web/SVG/Attribute#Animation_Timing_Attributes">アニメーションタイミング属性</a></dt>
 <dd><small>{{SVGAttr("begin")}}, {{SVGAttr("dur")}}, {{SVGAttr("end")}}, {{SVGAttr("min")}}, {{SVGAttr("max")}}, {{SVGAttr("restart")}}, {{SVGAttr("repeatCount")}}, {{SVGAttr("repeatDur")}}, {{SVGAttr("fill")}}</small></dd>
 <dt><a href="/ja/docs/Web/SVG/Attribute#Animation_Value_Attributes">アニメーション値属性</a></dt>
 <dd><small>{{SVGAttr("calcMode")}}, {{SVGAttr("values")}}, {{SVGAttr("keyTimes")}}, {{SVGAttr("keySplines")}}, {{SVGAttr("from")}}, {{SVGAttr("to")}}, {{SVGAttr("by")}}</small></dd>
 <dt><a href="/ja/docs/Web/SVG/Attribute#Animation_Attributes">他のアニメーション属性</a></dt>
 <dd><small>特に重要なもの: {{SVGAttr("attributeName")}}, {{SVGAttr("additive")}}, {{SVGAttr("accumulate")}}</small></dd>
 <dt><a href="/ja/docs/Web/SVG/Attribute/Events#Animation_Event_Attributes">アニメーションイベント属性</a></dt>
 <dd><small>特に重要なもの: {{SVGAttr("onbegin")}}, {{SVGAttr("onend")}}, {{SVGAttr("onrepeat")}}</small></dd>
</dl>

<h3 id="Global_attributes" name="Global_attributes">グローバル属性</h3>

<dl>
 <dt><a href="/ja/docs/Web/SVG/Attribute/Core">コア属性</a></dt>
 <dd><small>特に重要なもの: {{SVGAttr('id')}}</small></dd>
 <dt><a href="/ja/docs/Web/SVG/Attribute/Styling">スタイル付け属性</a></dt>
 <dd><small>{{SVGAttr('class')}}, {{SVGAttr('style')}}</small></dd>
 <dt>イベント属性</dt>
 <dd><small><a href="/ja/docs/Web/SVG/Attribute/Events#Global_Event_Attributes">グローバルイベント属性</a>, <a href="/ja/docs/Web/SVG/Attribute/Events#Document_Element_Event_Attributes">文書要素イベント属性</a></small></dd>
</dl>

<h2 id="Usage_notes" name="Usage_notes">使用上の注意</h2>

<p>この要素は {{domxref("SVGAnimateMotionElement")}} インターフェイスを実装しています。</p>

<h2 id="Specifications" name="Specifications">仕様書</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("SVG Animations 2", "#AnimateMotionElement", "&lt;animateMotion&gt;")}}</td>
   <td>{{Spec2("SVG Animations 2")}}</td>
   <td>変更なし</td>
  </tr>
  <tr>
   <td>{{SpecName('SVG1.1', 'animate.html#AnimateMotionElement', '&lt;animateMotion&gt;')}}</td>
   <td>{{Spec2('SVG1.1')}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("svg.elements.animateMotion")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{SVGElement("mpath")}}</li>
</ul>