在svg中進行剪切,對整個svg元素而言,可使用<svg>元素的viewbox屬性,對於單個元素則可使用<clipPath>元素。在單個圖形元素上使用裁剪,能夠在<defs>元素中聲明一個<clipPath>元素,在<clipPath>元素中使用圖形元素繪製一個選區,而後在要使用裁剪的元素上使用clip-path屬性引用聲明的<clipPath>元素便可。html
示例1:svg
<!DOCTYPE html> <html> <head> <title>SVG</title> </head> <body> <svg width="300" height="300" style="border:1px solid #000"> <defs> <clipPath id="c1"> <rect x="50" y="50" width="200" height="200"> </rect> </clipPath> </defs> <image xlink:href="background-1.jpg" width="300" height="300" clip-path="url(#c1)"></image> </svg> </body> </html>
效果:url
示例2:spa
<!DOCTYPE html> <html> <head> <title>SVG</title> </head> <body> <svg width="300" height="300" style="border:1px solid #000"> <defs> <clipPath id="c1"> <circle cx="150" cy="150" r="150"></circle> </clipPath> </defs> <image xlink:href="background-1.jpg" width="300" height="300" clip-path="url(#c1)"></image> </svg> </body> </html>
效果:code
示例3:htm
<!DOCTYPE html> <html> <head> <title>SVG</title> </head> <body> <svg width="300" height="300" style="border:1px solid #000"> <defs> <clipPath id="c1"> <path id="XMLID_1_" class="st0" d="M30.6,115.9c18.8,14.7,40.6-10.7,41.1,24.9S0.2,229.6,46.4,261.1s58.4,31,89.3,7.6 S108.4,226,150,193.5s61.9,71.6,92.8,34.5s54.3-79.7,19.8-111.7s-55.8-53.3-100.5-45.7S98.2,59.5,88,37.2S32.7,8.3,19,28.6 S11.9,101.2,30.6,115.9z"/> </clipPath> </defs> <image x="0" y="0" xlink:href="background-1.jpg" width="300" height="300" clip-path="url(#c1)"></image> </svg> </body> </html>
效果:blog
示例4:ip
<!DOCTYPE html> <html> <head> <title>SVG</title> </head> <body> <svg width="300" height="300" style="border:1px solid #000"> <defs> <clipPath id="c1"> <text x="0" y="150" style="font-size:75px" stroke="#000" fill="none"> clipPath </text> </clipPath> </defs> <image width="300" height="300" xlink:href="background-1.jpg" clip-path="url(#c1)"></image> </svg> </body> </html>
效果:ci
放大以後的效果:get
好看吧?<( ̄ˇ ̄)/
稍後添加