SVG 라인-<line>
<line> 요소는 라인을 만드는 데 사용됩니다 :
<svg height="210" width="500">
<line class="line" x1="0" y1="0" x2="200" y2="200" />
</svg>
<style>
.line {
fill: none;
stroke: red;
stroke-width:3px;
stroke-linecap:round;
stroke-miterlimit:10;
stroke-dasharray: 1353px;
stroke-dashoffset: 1353px;
animation: move 3s linear infinite;
}
@keyframes move {
100% {stroke-dashoffset: 0;}
}
@-webkit-keyframes move {
100% {stroke-dashoffset: 0;}
}
@-ms-keyframes move {
100% {stroke-dashoffset: 0;}
}
</style>
- x1 속성은 x 축에서 선의 시작을 정의합니다
- y1 속성은 y 축에서 선의 시작을 정의합니다
- x2 속성은 x 축에서 선의 끝을 정의합니다
- y2 속성은 y 축에서 선의 끝을 정의합니다
728x90
반응형
'퍼블리싱' 카테고리의 다른 글
[JS 활용]이미지 맵 클릭시 새창 팝업 띄우기 (0) | 2020.12.11 |
---|---|
아웃룩, 이메일 HTML 코딩 시 꼭 알아야 할 3가지 유의사항 (2) | 2020.12.10 |
[JS 활용]티스토리 카테고리 별로 갤러리형/리스트형 목록 다르게 출력 (0) | 2020.07.24 |
css background (0) | 2020.06.18 |
CSS 이미지 스프라이트 (0) | 2020.04.08 |
댓글