SVG 스트로크 등록
SVG는 스트로크 속성의 넓은 범위를 제공합니다. 이 장에서 우리는 다음 볼 것이다 :
- 행정
- 스트로크 폭
- 스트로크 linecap
- 스트로크 dasharray
모든 스트로크 특성은 선, 텍스트 및 원과 같은 요소의 윤곽의 종류에 적용 할 수 있습니다.
SVG 스트로크 부동산
스트로크 속성은 요소의 선, 텍스트 또는 윤곽의 색을 정의한다 :
다음은 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>
»그것을 자신을 시도 SVG 스트로크 폭 속성
스트로크 폭 속성은 요소의 라인의 텍스트 또는 테두리의 두께를 정의한다 :
다음은 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>
»그것을 자신을 시도 SVG 뇌졸중 linecap 속성
스트로크 - 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>
»그것을 자신을 시도 SVG 뇌졸중 dasharray 속성
스트로크 - 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>
»그것을 자신을 시도