SVG的中心内容

时间:2017-08-09 12:02:12

标签: html css animation svg css-animations

我有如下SVG。现在,圆圈占据了SVG的整个大小。我怎样才能看起来像这样:SVG有一定的大小(比方说215x250),圆圈的大小应该是svg中心的16。为这个居中的圆圈制作动画也很棒,所以它看起来像一个加载微调器。

<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve">
<style type="text/css">
    .st0{fill:#292929;}
    .st1{fill:#D5D5D5;}
</style>
<path class="st0" d="M150,35c63.5,0,115,51.5,115,115s-51.5,115-115,115S35,213.5,35,150c0-27.9,10-53.6,26.5-73.5L34.7,54
    C13.1,80,0,113.5,0,150c0,82.8,67.2,150,150,150s150-67.2,150-150S232.8,0,150,0V35z"/>
<path class="st1" d="M150,0C103.7,0,62.3,21,34.7,54l26.8,22.5C82.6,51.2,114.4,35,150,35V0z"/>
</svg>

JSFiddle

这是我想要实现的目标: enter image description here

1 个答案:

答案 0 :(得分:1)

明显的答案(除了将其加载回Illustrator并调整大小:)是缩小两条路径并将它们移动到中心。

比例需要为16/300 = 0.053。要将16x16的内容移动到300x300 viewBox的中心,您需要将其移动到(142,142)。

如果您希望SVG为215x250,请使用widthheight设置样式。

最后,对于轮换,您只需使用<animateTransform>元素。

svg {
  width: 215px;
  height: 250px;
  border: blue 1px solid;
}
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
	 viewBox="0 0 300 300">
  <style type="text/css">
  	.st0{fill:#292929;}
  	.st1{fill:#D5D5D5;}
  </style>
  <g transform="translate(142,142) scale(0.053)">
    <path class="st0" d="M150,35c63.5,0,115,51.5,115,115s-51.5,115-115,115S35,213.5,35,150c0-27.9,10-53.6,26.5-73.5L34.7,54
	C13.1,80,0,113.5,0,150c0,82.8,67.2,150,150,150s150-67.2,150-150S232.8,0,150,0V35z"/>
    <path class="st1" d="M150,0C103.7,0,62.3,21,34.7,54l26.8,22.5C82.6,51.2,114.4,35,150,35V0z"/>
    <animateTransform attributeName="transform" type="rotate"
                      from="0 150 150" to="360 150 150"
                      dur="1s" repeatDur="indefinite" additive="sum"/>
  </g>
</svg>