Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 3.79 KB

File metadata and controls

78 lines (57 loc) · 3.79 KB
title slug
<polygon>
Web/SVG/Element/polygon

{{SVGRef}}

<polygon> 要素は、接続された一連の直線の区間で構成される閉じた図形を定義します。最後の点は最初の点と結ばれます。

開いた図形については {{SVGElement("polyline")}} 要素をご覧ください。

html,
body,
svg {
  height: 100%;
}
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
  <!-- 既定で塗りつぶす多角形の例 -->
  <polygon points="0,100 50,25 50,75 100,0" />

  <!-- 同じ多角形で線を持ち塗りつぶされない例 -->
  <polygon points="100,100 150,25 150,75 200,0" fill="none" stroke="black" />
</svg>

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

属性

  • {{SVGAttr('points')}}
    • : この属性は多角形を描くのに必要な点 (絶対座標の x,y の組) のリストを定義します。 値の型: <number>+ ; 既定値: ""; アニメーション:
  • {{SVGAttr("pathLength")}}
    • : This attribute lets specify the total length for the path, in user units. 値の型: <number> ; 既定値: none; アニメーション:

グローバル属性

  • コア属性
    • : 特に重要なもの: {{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}}

仕様書

{{Specifications}}

ブラウザーの互換性

{{Compat}}

関連情報

  • 他の SVG 基本図形:

    • {{ SVGElement('circle') }}
    • {{ SVGElement('ellipse') }}
    • {{ SVGElement('line') }}
    • {{ SVGElement('polyline') }}
    • {{ SVGElement('rect') }}