--- title: ellipse slug: Web/SVG/Element/ellipse tags: - Element - Reference - SVG - SVG Graphics translation_of: Web/SVG/Element/ellipse ---
{{SVGRef}}

ellipse 要素は SVG の基本的な図形であり、中心となる座標と x 方向と y 方向の半径両方を指定し、楕円を生成します。

注記: 楕円要素は楕円の傾きを指定することはできません (例えば、45 度の角度で傾斜した楕円を描画したい場合)、しかし {{SVGAttr("transform")}} 属性を使用することで回転させることは可能です。

<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
  <ellipse cx="100" cy="50" rx="100" ry="50" />
</svg>

{{EmbedLiveSample('LiveSample', 100, '100%')}}

属性

{{SVGAttr("cx")}}
楕円の x 座標。
Value type: <length>|<percentage> ; デフォルト値: 0; アニメーション: yes
{{SVGAttr("cy")}}
楕円の y 座標。
Value type: <length>|<percentage> ; デフォルト値: 0; アニメーション: yes
{{SVGAttr("rx")}}
x 軸の半径。
Value type: auto|<length>|<percentage> ; デフォルト値: auto; アニメーション: yes
{{SVGAttr("ry")}}
y 軸の半径。
Value type: auto|<length>|<percentage> ; デフォルト値: auto; アニメーション: yes
{{SVGAttr("pathLength")}}
この属性は、使用単位での単位合計パス長さを指定します。
Value type: <number> ; デフォルト値: none; アニメーション: yes

注記: SVG2 以降、cxcyrxry は、Geometry Properties であり、これらの属性は要素の CSS プロパティとして使用することもできます。

グローバル属性

コア属性
注目すべき属性: {{SVGAttr('id')}}, {{SVGAttr('tabindex')}}
スタイリング属性
{{SVGAttr('class')}}, {{SVGAttr('style')}}
条件処理属性
注目すべき属性: {{SVGAttr('requiredExtensions')}}, {{SVGAttr('systemLanguage')}}
イベント属性
グローバルイベント属性Graphical イベント属性
プレゼンテーション属性
注目すべき属性: {{SVGAttr('clip-path')}}, {{SVGAttr('clip-rule')}}, {{SVGAttr('color')}}, {{SVGAttr('color-interpolation')}}, {{SVGAttr('color-rendering')}}, {{SVGAttr('cursor')}}, {{SVGAttr('display')}}, {{SVGAttr('fill')}}, {{SVGAttr('fill-opacity')}}, {{SVGAttr('fill-rule')}}, {{SVGAttr('filter')}}, {{SVGAttr('mask')}}, {{SVGAttr('opacity')}}, {{SVGAttr('pointer-events')}}, {{SVGAttr('shape-rendering')}}, {{SVGAttr('stroke')}}, {{SVGAttr('stroke-dasharray')}}, {{SVGAttr('stroke-dashoffset')}}, {{SVGAttr('stroke-linecap')}}, {{SVGAttr('stroke-linejoin')}}, {{SVGAttr('stroke-miterlimit')}}, {{SVGAttr('stroke-opacity')}}, {{SVGAttr('stroke-width')}}, {{SVGAttr("transform")}}, {{SVGAttr('vector-effect')}}, {{SVGAttr('visibility')}}
ARIA 属性
aria-activedescendant, aria-atomic, aria-autocomplete, aria-busy, aria-checked, aria-colcount, aria-colindex, aria-colspan, aria-controls, aria-current, aria-describedby, aria-details, aria-disabled, aria-dropeffect, aria-errormessage, aria-expanded, aria-flowto, aria-grabbed, aria-haspopup, aria-hidden, aria-invalid, aria-keyshortcuts, aria-label, aria-labelledby, aria-level, aria-live, aria-modal, aria-multiline, aria-multiselectable, aria-orientation, aria-owns, aria-placeholder, aria-posinset, aria-pressed, aria-readonly, aria-relevant, aria-required, aria-roledescription, aria-rowcount, aria-rowindex, aria-rowspan, aria-selected, aria-setsize, aria-sort, aria-valuemax, aria-valuemin, aria-valuenow, aria-valuetext, role

使用可能な場所

{{svginfo}}

仕様

仕様 状態 コメント
{{SpecName('SVG2', 'shapes.html#EllipseElement', '<ellipse>')}} {{Spec2('SVG2')}} rxryauto を追加
{{SpecName('SVG1.1', 'shapes.html#EllipseElement', '<ellipse>')}} {{Spec2('SVG1.1')}} 最初の定義

ブラウザー実装状況

{{Compat("svg.elements.ellipse")}}

関連情報