按比例调整SVG背景图像的大小

时间:2019-05-16 13:30:42

标签: html css svg

我想将SVG设置为高度为100px的背景图像,并根据图像的原始比例设置宽度(以避免变形)。 SVG的XML是

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   viewBox="0 0 600.09332 291.44"
   height="291.44"
   width="600.09332"
   xml:space="preserve"
   id="svg2"
   version="1.1">
  <!-- other markup omitted -->
</svg>

我正在使用的CSS是

.image {
  display: block;
  height: 100px;
  width: auto;
  background-image: url(../images/header_logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}

当我使用width: auto时,图像完全不显示。如果我将其更改为width: 100px,则会显示图像,但宽度/高度比例会变形。

1 个答案:

答案 0 :(得分:-1)

请使用嵌入式图像作为背景,这样可以正确维护比例: https://jsfiddle.net/5cxr18jf/

<div class="wrapper">
   <h1>Other content</h1>
   <img class="background" src="https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/compass.svg">
</div>

.wrapper {
  width: 500px;
  height: 500px;
  background: #ddd;
  position: relative;
}

.background {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}