SVG path 그라데이션

Jmnote (토론 | 기여)님의 2017년 8월 29일 (화) 18:07 판 (새 문서: ==개요== ;SVG path 그라데이션 <source lang='html'> <svg width="100" height="100" viewBox="0 -0.5 5 5"> <defs> <linearGradient id="grad1"> <stop offset="5%" stop-co...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

SVG path 그라데이션
<svg width="100" height="100" viewBox="0 -0.5 5 5">
  <defs>
    <linearGradient id="grad1">
      <stop offset="5%" stop-color="red" />
      <stop offset="95%" stop-color="blue" />
    </linearGradient>
  </defs>
  <path stroke="url(#grad1)" d="M0 0h5M0 2h5M0 4h5" />
</svg>

2 같이 보기[ | ]

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