title | slug | l10n | ||
---|---|---|---|---|
<polyline> |
Web/SVG/Element/polyline |
|
{{SVGRef}}
<polyline>
は SVG 要素で、複数の点を結ぶ直線を作成する SVG の基本図形です。一般的に polyline
は開いた図形を作成するために用いられます。最後の点は最初の点に接続されている必要はないからです。閉じた図形については {{SVGElement("polygon")}} 要素を参照してください。
html,
body,
svg {
height: 100%;
}
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
<!-- Example of a polyline with the default fill -->
<polyline points="0,100 50,25 50,75 100,0" />
<!-- Example of the same polyline shape with stroke and no fill -->
<polyline points="100,100 150,25 150,75 200,0" fill="none" stroke="black" />
</svg>
{{EmbedLiveSample('Example', 100, 100)}}
- {{SVGAttr('points')}}
- : この属性は、連続線を描画するのに必要な点(x,y の絶対座標の組)のリストを定義します。
値の型: <number>+ ; 既定値:
""
; アニメーション: 可
- : この属性は、連続線を描画するのに必要な点(x,y の絶対座標の組)のリストを定義します。
値の型: <number>+ ; 既定値:
- {{SVGAttr("pathLength")}}
- : この属性は、パスの全長をユーザー単位で指定します。 値の型: <number> ; 既定値: none; アニメーション: 可
{{svginfo}}
{{Specifications}}
{{Compat}}
- SVG プレゼンテーション属性、{{SVGAttr("fill")}} や {{SVGAttr("stroke")}} など
- その他の SVG 基本図形: {{ SVGElement('circle') }}, {{ SVGElement('ellipse') }}, {{ SVGElement('line') }}, {{ SVGElement('polygon') }}, {{ SVGElement('rect') }}