css - 如何在没有纵横比的 SVG 中保持图像的纵横比

标签 css svg sass cross-browser

我有一个 SVG 可以正常用作遮盖图像的剪切路径。 SVG 形状具有 preserveAspectRatio="none"并且表现出我想要的方式(全宽但保持静态高度)。

问题是我正在裁剪的图像与 SVG 一起拉伸(stretch)和挤压,而我希望它的行为与具有 background-size: cover; 的背景图像相同。 (始终填充 SVG,必要时裁剪,但保持纵横比)。

是否可以通过跨浏览器兼容性(最新的 Chrome、Firefox、Safari 和 Internat Explorer)做到这一点?

HTML:

<div class="outer-wrapper">
  <div class="svg-wrapper">
    <!-- hidden SVG -->
    <svg class="shadow-svg">
      <!-- create drop shadow -->
      <filter id="drop-shadow">
        <feGaussianBlur in="SourceAlpha" stdDeviation="5"/>
        <feOffset dx="0" dy="0" result="offsetblur"/>
        <feFlood flood-color="rgb(0,0,0)" flood-opacity="0.75"/>
        <feComposite in2="offsetblur" operator="in"/>
        <feMerge>
          <feMergeNode/>
          <feMergeNode in="SourceGraphic"/>
        </feMerge>
      </filter>
      <!-- create shape-->
      <symbol id="shadow" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
        <defs>
          <polygon id="clipShape" points="0 0 0 260 20 260 20 210 1350 210 1350 260 1370 260 1370 0 0 0" style="filter:url(#dropshadow)"/>
        </defs>
      </symbol>
      <!-- set shape as clipping path -->
      <clipPath id="clipPath">
        <use xlink:href="#clipShape" />
      </clipPath>
    </svg>
    <!-- visible SVG -->
    <svg class="shape-svg" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1370 260" enable-background="new 0 0 1370 260" xml:space="preserve" preserveAspectRatio="none">
      <!-- add drop shadow -->
      <use xlink:href="#shadow" />
      <!-- add clipping path shape -->
      <g transform="matrix(1 0 0 1 0 0)" clip-path="url(#clipPath)" >
        <!-- add image inside clipping path shape -->
        <image width="1370" height="260" xlink:href="https://www.unsplash.it/1370/260" transform="matrix(1 0 0 1 0 0)"></image>
      </g>
    </svg>
  </div><!-- .svg-wrapper -->
  <!-- text block -->
  <div class="header-text">
    <h2>Test Header Placeholder</h2>
    <p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Velit exercitationem quibusdam sed natus blanditiis quia assumenda, magni tenetur veritatis itaque iure explicabo veniam maiores magnam architecto et corporis possimus.</p>    
  </div>
</div><!-- .outer-wrapper -->

SCSS:

* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background: repeating-linear-gradient(-45deg, palegreen, palegreen 3px, lightgreen 3px, lightgreen 40px);
}

.outer-wrapper {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.svg-wrapper {
  width: 96%;
  height: 150px;
  margin: 0 auto;
}

.shadow-svg {
  width: 0;
  height: 0;
  position: absolute;
}

.shape-svg {
  width: 100%;
  height: 150px;
  filter: url(#drop-shadow);
}

.header-text {
  width: 90%;
  margin: -20px auto 0;
  font-family: monaco, courier;
}

CodePen Here

注意:它目前不适用于 Firefox 或 IE11。对于让所有这些在这些浏览器上正常工作的任何帮助,我将不胜感激。

谢谢。

最佳答案

关于纵横比

您可以将 svg 设置为 div 的背景图像。并用 css 设置样式; background-size: cover;background-position: center bottom;可能会成功。

这里是“为什么它在 MS-Edge 中不起作用?”这个问题的答案。

  • <defs> 中定义您的 clipPath元素。
  • defs 元素应该是引用元素的祖先元素之一的直接子元素,但在您的示例中并非如此。将 defs 元素作为 <svg> 的子元素放置元素始终有效。来源:https://www.w3.org/TR/SVG/struct.html#DefsElement
  • 生活准则:尽可能保持简单。这意味着不要使用不必要的引用。只显示 <clipPath> 内的剪切路径元素。 <defs>元素最终对我来说看起来像这样,并且是 <svg> 的子元素元素。

<defs>
  <!-- set shape as clipping path -->
  <clipPath id="clipPath">
    <polygon points="0 0 0 260 20 260 20 210 1350 210 1350 260 1370 260 1370 0 0 0"/>
  </clipPath>
</defs>

关于css - 如何在没有纵横比的 SVG 中保持图像的纵横比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47319849/

相关文章:

jquery - 你能执行基于元素伪类的 jQuery 函数吗?

javascript - 为什么 CSS .addClass 没有根据具体情况应用适当的样式?

javascript - 如何检查 svg 的填充不透明度是否为 0?

css - 如何在 Bootstrap 3 中获得半列?

svg - Wkhtmltopdf无法打印SVG路径( Highcharts )

javascript - 用于查找路径交叉点的 RaphaelJS 库

html - 如何缩小我的 scss 代码?

css - 如何将外部 CSS 文件导入我的 Ember 应用程序?

css - 添加了 Sass、IE 过滤器和额外的空格

javascript - 使用 AngularJS ng-show 的 CSS 过渡