Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 2.07 KB

File metadata and controls

62 lines (45 loc) · 2.07 KB
title slug l10n
<circle>
Web/SVG/Element/circle
sourceCommit
2e5fc06de139c56873a20ec4bc3bf5600ea3cbef

{{SVGRef}}

<circle>SVG の要素で、SVG 基本図形の一つであり、中心座標と半径を指定して円を描画します。

html,
body,
svg {
  height: 100%;
}
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
  <circle cx="50" cy="50" r="50" />
</svg>

{{EmbedLiveSample('Example', 100, 100)}}

属性

  • {{SVGAttr("cx")}}
    • : 円の中心の X 軸座標です。 値の型: <length>|<percentage> ; 既定値: 0; アニメーション:
  • {{SVGAttr("cy")}}
    • : 円の中心の Y 軸座標です。 値の型: <length>|<percentage> ; 既定値: 0; アニメーション:
  • {{SVGAttr("r")}}
    • : 円の半径。0 以下の値は円の描画が無効となります。 値の型: <length>|<percentage> ; 既定値: 0; アニメーション:
  • {{SVGAttr("pathLength")}}
    • : 円の円周の長さの合計をユーザー単位で指定します。 値の型: <number> ; 既定値: なし; アニメーション:

Note

SVG2 から cx, cy, r はジオメトリープロパティであり、これらの属性はその要素の CSS プロパティとしても使用することができるということを意味しています。

使用可能な場所

{{svginfo}}

仕様書

{{Specifications}}

ブラウザーの互換性

{{Compat}}

関連情報

  • その他の SVG 基本図形: {{ SVGElement('ellipse') }}, {{ SVGElement('line') }}, {{ SVGElement('polygon') }}, {{ SVGElement('polyline') }}, {{ SVGElement('rect') }}