Свойства заливки SVG

Свойства заливки SVG

SVG предлагает широкий спектр свойств штриховки. В этой главе мы рассмотрим следующее:

  • stroke
  • stroke-width
  • stroke-linecap
  • stroke-dasharray

Все свойства штриховки можно использовать для любого типа линий, текста и контуров элементов (например, окружности).

Атрибут stroke SVG

stroke Атрибут определяет цвет контура линий, текста или элементов:

Это код SVG:

<svg height="80" width="300">
  <g fill="none">
    <path stroke="red" d="M5 20 l215 0" />
    <path stroke="black" d="M5 40 l215 0" />
    <path stroke="blue" d="M5 60 l215 0" />
  </g>
</svg>

Попробуйте сами

Атрибут stroke-width SVG

stroke-width Атрибут определяет толщину контура линий, текста или элементов:

Это код SVG:

<svg height="80" width="300">
  <g fill="none" stroke="black">
    <path stroke-width="2" d="M5 20 l215 0" />
    <path stroke-width="4" d="M5 40 l215 0" />
    <path stroke-width="6" d="M5 60 l215 0" />
  </g>
</svg>

Попробуйте сами

Атрибут stroke-linecap SVG

stroke-linecap Атрибут определяет различные типы концов открытых путей:

Это код SVG:

<svg height="80" width="300">
  <g fill="none" stroke="black" stroke-width="6">
    <path stroke-linecap="butt" d="M5 20 l215 0" />
    <path stroke-linecap="round" d="M5 40 l215 0" />
    <path stroke-linecap="square" d="M5 60 l215 0" />
  </g>
</svg>

Попробуйте сами

Атрибут stroke-dasharray SVG

stroke-dasharray Атрибут используется для создания штриховки:

Это код SVG:

<svg height="80" width="300">
  <g fill="none" stroke="black" stroke-width="4">
    <path stroke-dasharray="5,5" d="M5 20 l215 0" />
    <path stroke-dasharray="10,10" d="M5 40 l215 0" />
    <path stroke-dasharray="20,10,5,5,5,10" d="M5 60 l215 0" />
  </g>
</svg>

Попробуйте сами