如何将我的 svg 图像定位到浏览器的中心

How to position my svg image to the center of browser

我生成了一个简单的 svg 图像并将其加载到 Chrome。打算将它定位到浏览器的中心(即使浏览器调整大小时),但到目前为止都失败了。

参考了一些关于viewport/viewbox设置的文章,以及本站的一些Q&A(),但还没搞定。也许我错过了什么,因为我对此很陌生。

这是此 svg 图像的完整代码:

<svg
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   width="100%"
   height="100%"
   viewBox="0 -700 1080 1920"
   preserveAspectRatio="xMidYMid meet"
   version="1.1"
   id="mysvg"
>
  <g
    id="group" >
      <circle
       r="500"
       style="fill:#ffb721;fill-opacity:1"
       cy="0"
       cx="0"
       id="path" />

       <circle
       style="fill:#f71c17;fill-opacity:1;"
       id="path2"
       cx="0"
       cy="0"
       r="250" />
   </g>
</svg>

我希望即使在浏览器调整大小时,此图像也能保持在浏览器的中央。

我想这就是你想要的? 即使浏览器调整大小和滚动,SVG 也将位于中心

全球 CSS

CSS:

#container {
top: 50%;
left: 50%;
position: fixed;
transform: translate(-50%, -50%);
}

内部 SVG

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 439.29 439.29" width="100%" height="100%">
    <g id="group">
      <circle cx="219.64" cy="219.64" r="219.64" style="fill: #ffb721" id="path"/>
      <circle cx="219.64" cy="219.64" r="108.32" style="fill: #f71c17" id="path2"/>
    </g>
  </svg>

您的 SVG 需要稍作修改才能使其在 ViewBox 中居中。

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 300px;
  height: 300px;
  background-color: rgba(red, .3);
}
<div class="container">
<svg
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   width="100%"
   height="100%"
   viewBox="-540 -960 1080 1920"
   preserveAspectRatio="xMidYMid meet"
   version="1.1"
   id="mysvg"
>
  <g
    id="group" >
      <circle
       r="500"
       style="fill:#ffb721;fill-opacity:1"
       cy="0"
       cx="0"
       id="path" />

       <circle
       style="fill:#f71c17;fill-opacity:1;"
       id="path2"
       cx="0"
       cy="0"
       r="250" />
   </g>
</svg>
</div>