(즐거웅코드) svg로 중간에 마스크 씌워진 삼각형 그리기
[즐거'웅'코드] 목차 예제 소스 구현 예시 예제 소스 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 #triangle{ stroke-dasharray: 4000; animation: drawing 30s ease-out forwards; } @keyframes drawing { to { stroke-dashoffset: 0; } from { stroke-dashoffset: 4000; } } 구현 예시
2021. 6. 6. 23:00