SVG 그라데이션

1 개요[ | ]

SVG 그라데이션

2 예시 1: 가로 그라데이션(기본)[ | ]

<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: 세로 그라데이션[ | ]

<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 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}