1 개요[ | ]
- SVG 그라데이션
2 예시 1: 가로 그라데이션(기본)[ | ]
html
Copy
<svg width="100" height="100">
<defs>
<linearGradient id="grad1">
<stop offset="5%" stop-color="red" />
<stop offset="95%" stop-color="blue" />
</linearGradient>
</defs>
<circle cx="50" cy="50" r="40" fill="url(#grad1)" />
</svg>
3 예시 2: 세로 그라데이션[ | ]
html
Copy
<svg width="100" height="100">
<defs>
<linearGradient id="grad1" x2="0%" y2="100%">
<stop offset="5%" stop-color="red" />
<stop offset="95%" stop-color="blue" />
</linearGradient>
</defs>
<circle cx="50" cy="50" r="40" fill="url(#grad1)" />
</svg>
4 같이 보기[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.