본문 바로가기

Webstoryboy

Category

Explanation

SVG

[SVG] clipPath

<clipPath>

<clipPath> 요소는 클립 패스를 정의합니다.


<clipPath>

<clipPath> 요소는 클리핑 마스크의 클립 영역 패스를 정의합니다.

정의(Definition)

  • <clipPath> 요소는 클리핑 마스크의 클립 영역 패스를 정의합니다.

1. clipPath

SVG를 이용한 clipPath입니다.

Sample1
HTML
<div class="svgBox">
    <svg class="svg">
        <image xlink:href="https://tistory1.daumcdn.net/tistory/2933724/skin/images/test2.jpg" width="160" hight="160" />
    </svg>
    <svg class="svg">
        <image xlink:href="https://tistory1.daumcdn.net/tistory/2933724/skin/images/test2.jpg" width="100%" hight="100%" clip-path="circle(50px at center)" />
    </svg>
    <svg class="svg">
        <clipPath id="clipPath1">
            <polygon points="120,142 9,93 107,22"></polygon>
        </clipPath>
        <image xlink:href="https://tistory1.daumcdn.net/tistory/2933724/skin/images/test2.jpg" width="100%" hight="100%" clip-path="url(#clipPath1)" />
    </svg>
    <svg class="svg">
        <clipPath id="clipPath2">
            <polygon points="134,134 88,117 48,145 49,97 10,68 57,54 72,8 100,48 149,48 119,87 "></polygon>
        </clipPath>
        <image xlink:href="https://tistory1.daumcdn.net/tistory/2933724/skin/images/test2.jpg" width="100%" hight="100%" clip-path="url(#clipPath2)" />
    </svg>
</div>
CSS
.svgBox .svg {width: 160px; height: 160px; background: #ffebee;}
TOTAL
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>SVG</title>
    <style>
    .svgBox .svg {width: 160px; height: 160px; background: #ffebee;}
    </style>
</head>
<body>
    <div class="svgBox">
        <svg class="svg">
            <image xlink:href="https://tistory1.daumcdn.net/tistory/2933724/skin/images/test2.jpg" width="160" hight="160" />
        </svg>
        <svg class="svg">
            <image xlink:href="https://tistory1.daumcdn.net/tistory/2933724/skin/images/test2.jpg" width="100%" hight="100%" clip-path="circle(50px at center)" />
        </svg>
        <svg class="svg">
            <clipPath id="clipPath1">
                <polygon points="120,142 9,93 107,22"></polygon>
            </clipPath>
            <image xlink:href="https://tistory1.daumcdn.net/tistory/2933724/skin/images/test2.jpg" width="100%" hight="100%" clip-path="url(#clipPath1)" />
        </svg>
        <svg class="svg">
            <clipPath id="clipPath2">
                <polygon points="134,134 88,117 48,145 49,97 10,68 57,54 72,8 100,48 149,48 119,87 "></polygon>
            </clipPath>
            <image xlink:href="https://tistory1.daumcdn.net/tistory/2933724/skin/images/test2.jpg" width="100%" hight="100%" clip-path="url(#clipPath2)" />
        </svg>
    </div>
</body>
</html>

호환성(Compatibility) 더보기 caniuse.com

크롬 아이콘 파이어폭스 아이콘 사파리 아이콘 오페라 아이콘 네이버 웨일 익스플로러6 아이콘6 익스플로러7 아이콘7 익스플로러8 아이콘8 익스플로러9 아이콘9 익스플로러10 아이콘10 익스플로러11 아이콘11 엣지 아이콘 안드로이드 아이콘 ios 아이콘
<text> 사용가능 사용가능 사용가능 사용가능 사용가능 사용안됨 사용안됨 사용안됨 사용가능 사용가능 사용가능 사용가능 사용가능 사용가능

참고(Reference)

  • MDN SVG
  • CSS Masking Module Level 1

더보기

인스타그램 보기 바로가기

포트폴리오 스터디 바로가기

유튜브 영상보기 바로가기