我一直试图在调整大小时将响应的Svg图像居中切片。
我使用 Set rngCopy = wsFTP.Range("FTPResults1").SpecialCells(xlCellTypeVisible)
Set rngCopyNotes = wsFTP.Range("FTPResults2").SpecialCells(xlCellTypeVisible)
Set rngCopyFRResults = wsFTP.Range("FTPResults3").SpecialCells(xlCellTypeVisible)
Set rngCopyFRResults2 = wsFTP.Range("FTPResults4").SpecialCells(xlCellTypeVisible)
NextRow = wsFail.Range("Fail_Report_Table").Cells(1, 1).Row
rngCopy.Copy wsFail.Range("A" & NextRow)
rngCopyNotes.Copy wsFail.Range("H" & NextRow)
rngCopyFRResults.Copy wsFail.Range("C" & NextRow)
rngCopyFRResults2.Copy wsFail.Range("D" & NextRow)
来实现输出,但图像宽度并没有保留我的屏幕宽度。
preserveAspectRatio="xMidYMax slice"

body{
margin:0;padding:0;
}
.wrapper {
position: relative;
width: 100%;
min-width: 100%;
vertical-align: middle;
margin: 0;
}
.bg-svg {
display: inline-block;
position: absolute;
top: 0; left: 0;
width: 100%;
}

我正在尝试实现像Codepen demo这样的输出,但我不想使用背景图像。
答案 0 :(得分:1)
您的主要问题是您的SVG需要:
width="100%" height="100%"
以便它填充包装器。还有一些其他不必要的CSS。
body{
margin:0;
padding:0;
}
.wrapper {
width: 100%;
height: 100vh;
}

<div class="wrapper">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%"
viewBox="0 0 1920 1080" preserveAspectRatio="xMidYMid slice" class="bg-svg">
<rect fill="#DACFB9" width="1920" height="1080"/>
<rect x="719" y="296" fill="#EF6544" stroke="#FFFFFF" stroke-miterlimit="10" width="482" height="482"/>
<rect x="1438" y="296" fill="#AFFF84" stroke="#D3D2D2" stroke-miterlimit="10" width="482" height="482"/>
<rect x="1" y="296" fill="#7AEEFF" stroke="#D3D2D2" stroke-miterlimit="10" width="482" height="482"/>
<text transform="matrix(1 0 0 1 841 557)" font-family="'GothamBlack'" font-size="60">MIDDLE</text>
</svg>
</div>
&#13;
答案 1 :(得分:0)
您尝试实现并与background-image
相关联的结果。为了使其正常工作,请使用此简化svg
。确保您拥有viewBox
,xmls
和至少width
或height
属性(设置为不带单位的整数)。然后svg
将像任何其他背景图像一样处理。我不能在这里显示这个,因为我无法从SO链接,但继续修改SVG:
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1920" height="1080" viewBox="0 0 1920 1080">
<rect fill="#DACFB9" width="1920" height="1080"/>
<rect x="719" y="296" fill="#EF6544" stroke="#FFFFFF" stroke-miterlimit="10" width="482" height="482"/>
<rect x="1438" y="296" fill="#AFFF84" stroke="#D3D2D2" stroke-miterlimit="10" width="482" height="482"/>
<rect x="1" y="296" fill="#7AEEFF" stroke="#D3D2D2" stroke-miterlimit="10" width="482" height="482"/>
<text transform="matrix(1 0 0 1 841 557)" font-family="'GothamBlack'" font-size="60">MIDDLE</text>
</svg>
我们可以这样模拟这个背景:
svg {
min-width: 100%;
min-height: 100%;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}
&#13;
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1920" height="1080" viewBox="0 0 1920 1080">
<rect fill="#DACFB9" width="1920" height="1080"/>
<rect x="719" y="296" fill="#EF6544" stroke="#FFFFFF" stroke-miterlimit="10" width="482" height="482"/>
<rect x="1438" y="296" fill="#AFFF84" stroke="#D3D2D2" stroke-miterlimit="10" width="482" height="482"/>
<rect x="1" y="296" fill="#7AEEFF" stroke="#D3D2D2" stroke-miterlimit="10" width="482" height="482"/>
<text transform="matrix(1 0 0 1 841 557)" font-family="'GothamBlack'" font-size="60">MIDDLE</text>
</svg>
&#13;
如果您将其另存为SVG文件,则只需使用background-image
:
background-image: url(path/to/vector.svg) repeat 50% 50%;