svg로 선을 그려보세요.
사각형 점선
샘플 코드
html, css에서만 설명합니다.
hover하면 점선이 빙빙 돌립니다.
html
<svg viewBox="0 0 200 200">
<polygon points="20,20 20,100 120,100, 120,20"/>
</svg>
css
svg {
stroke: #09d;
stroke-width: 2;
stroke-dashoffset: 0;
stroke-dasharray: 5;
fill: none;
-webkit-transition: all 2s ease-in-out;
}
svg:hover {
stroke-dashoffset: 100;
stroke-width: 1;
stroke-dasharray: 3;
}
Reference
이 문제에 관하여(svg로 선을 그려보세요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/akifo/items/156faa6677b94a3ca710텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)