【发布时间】:2018-04-29 09:53:58
【问题描述】:
我有一个 SVG 可以正常用作遮蔽图像的剪切路径。 SVG 形状具有 preserveAspectRatio="none" 并且表现得如我所愿(全宽但保持静态高度)。
问题是我正在剪辑的图像与 SVG 一起被拉伸和挤压,而我希望它的行为与具有 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;
}
注意:它目前不适用于 Firefox 或 IE11。如果能帮助我在这些浏览器上运行所有这些,我将不胜感激。
谢谢。
【问题讨论】:
标签: css svg sass cross-browser