4

我有一个使用 SVG clipPath 剪辑的图像。但是,我希望图像在 clipPath 中水平和垂直居中对齐。

有没有办法做到这一点?

<!-- SVG Reference -->
<svg height="0" width="0">
  <defs>
    <clipPath id="svgPath2">
      <path fill="#00B6B5" d="M262.229,81.068l-29.486-66.662
                              c-1.598-3.248-4.91-5.309-8.537-5.309H17.394c-6.408,0-10.596,6.703-7.773,12.441l26.736,61.072
                              c1.697,3.449,1.676,7.494-0.059,10.926L9.827,152.482c-2.902,5.742,1.283,12.521,7.732,12.521h206.715
                              c3.592,0,6.879-2.018,8.494-5.217l29.387-64.717C264.378,90.671,264.405,85.49,262.229,81.068z"/>
    </clipPath>
  </defs>
</svg>
<!-- SVG Reference -->

<div class="arrow-cards">
  <img src="http://static2.businessinsider.com/image/4f3433986bb3f7b67a00003c/a-parasite-found-in-cats-could-be-manipulating-our-brains.jpg" style="clip-path: url(#svgPath2); -webkit-clip-path: url(#svgPath2);">
</div>

http://codepen.io/aguerrero/pen/LGqMVq

4

1 回答 1

4

您的剪辑路径使用绝对坐标,因此它基本上固定在页面上。您可以设置 img 尺寸以匹配箭头形状的大小(大约 258x156)。但这会使图像变形。

或者,您可以通过将图像的宽度设置为 258 来保持图像的宽高比正确。然后通过使用相对定位将其居中移动一点。

body, svg {
  margin: 0;
  padding: 0;
}

img {
  clip-path: url(#svgPath2);
  -webkit-clip-path: url(#svgPath2);
  position: relative;
  top: -20px;
}
<!-- SVG Reference -->
<svg height="0px" width="0px">
  <defs>
    <clipPath id="svgPath2">
      <path fill="#00B6B5" d="M262.229,81.068l-29.486-66.662
                              c-1.598-3.248-4.91-5.309-8.537-5.309H17.394c-6.408,0-10.596,6.703-7.773,12.441l26.736,61.072
                              c1.697,3.449,1.676,7.494-0.059,10.926L9.827,152.482c-2.902,5.742,1.283,12.521,7.732,12.521h206.715
                              c3.592,0,6.879-2.018,8.494-5.217l29.387-64.717C264.378,90.671,264.405,85.49,262.229,81.068z"/>
    </clipPath>
  </defs>
</svg>
<!-- SVG Reference -->

<div class="arrow-cards">
  <img src="http://static2.businessinsider.com/image/4f3433986bb3f7b67a00003c/a-parasite-found-in-cats-could-be-manipulating-our-brains.jpg" width="258">
</div>

或者更简单的方法是将包含设置div为箭头形状的大小并将剪辑应用于该大小。图像将通过使用居中background-szie: cover

body, svg {
  margin: 0;
  padding: 0;
}

.arrow-cards {
  width: 265px;
  height: 165px;
  background-image: url(http://static2.businessinsider.com/image/4f3433986bb3f7b67a00003c/a-parasite-found-in-cats-could-be-manipulating-our-brains.jpg);
  background-size: cover;
  clip-path: url(#svgPath2);
  -webkit-clip-path: url(#svgPath2);
}
<div class="arrow-cards"></div>

<!-- SVG Reference -->
<svg height="0px" width="0px">
  <defs>
    <clipPath id="svgPath2">
      <path fill="#00B6B5" d="M262.229,81.068l-29.486-66.662
                              c-1.598-3.248-4.91-5.309-8.537-5.309H17.394c-6.408,0-10.596,6.703-7.773,12.441l26.736,61.072
                              c1.697,3.449,1.676,7.494-0.059,10.926L9.827,152.482c-2.902,5.742,1.283,12.521,7.732,12.521h206.715
                              c3.592,0,6.879-2.018,8.494-5.217l29.387-64.717C264.378,90.671,264.405,85.49,262.229,81.068z"/>
    </clipPath>
  </defs>
</svg>
<!-- SVG Reference -->

如果您打算在页面上的不同位置使用箭头形状,您可能需要查看使用clipPathUnits="objectBoundingBox". 这样,它可以应用于页面上任何位置的元素,并会调整以适应元素形状。

于 2016-02-14T15:17:41.007 回答