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

<path> SVG要素は図形を定義する汎用的な要素です。全ての基本図形は path 要素によって定義されます。

使用可能な場所

{{svginfo}}

<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
  <path d="M 10,30
           A 20,20 0,0,1 50,30
           A 20,20 0,0,1 90,30
           Q 90,60 50,90
           Q 10,60 10,30 z"/>
</svg>

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

属性

{{SVGAttr("d")}}
この属性は図形のパスを定義します。
値の型: <string> ; 初期値: ''; アニメーション可否: yes
{{SVGAttr("pathLength")}}
この属性は、ユーザ単位系でのパスの全長を指定することを可能にします。
値の型: <number> ; 初期値: none; アニメーション可否: yes

グローバル属性

コア属性
特に: {{SVGAttr('id')}}, {{SVGAttr('tabindex')}}
スタイル属性
{{SVGAttr('class')}}, {{SVGAttr('style')}}
条件処理属性
特に: {{SVGAttr('requiredExtensions')}}, {{SVGAttr('systemLanguage')}}
イベント属性
グローバルイベント属性, グラフィカルイベント属性
プレゼンテーション属性
特に: {{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("SVG Paths", "#PathElement", "<path>")}} {{Spec2("SVG Paths")}}
{{SpecName("SVG2", "paths.html#PathElement", "<path>")}} {{Spec2("SVG2")}}
{{SpecName("SVG1.1", "paths.html#PathElement", "<path>")}} {{Spec2("SVG1.1")}} 最初の定義

ブラウザ実装状況

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

関連情報