https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
선그리기 및 애니메이션 등 활용 범위 다양
[angular attribute svg 사용법]
ex :
In order to bind to SVG element attributes in Angular, you must prefix them with attr:
For your circle this will be:
<svg height="100" width="100">
<circle fill="white"
[attr.cx]="parsedSize/2"
[attr.cy]="parsedSize/2"
[attr.r]="radius"
[attr.stroke]="stroke"
[attr.stroke-width]="strokeWidthCapped"
[attr.stroke-dasharray]="circumference"
[attr.stroke-dashoffset]="(1 - parsedComplete) * circumference"/>
</svg>
'FE > HTML' 카테고리의 다른 글
[ HTML ] cursor 이미지 작동 크기 제한 (0) | 2022.12.10 |
---|---|
[ HTML ] INPUT 한글 입력시 두번 이벤트 잡히는 경우 (0) | 2022.11.19 |
[ HTML ] 포지션 좌표 (0) | 2022.06.03 |
[ HTML ] 드래그 이벤트 총정리 (0) | 2022.06.02 |
[ HTML ] 탭 키 포커스 이동 (0) | 2022.05.02 |