如何使svg大小适合其内容?

时间:2018-06-12 09:39:07

标签: svg

我正在使用svgs显示扑克牌。我不希望svgs扩展,我不知道会有多少张卡。卡虽然有固定的大小。 cards as svgs

有没有办法让svg容器调整大小以适应内容? 谢谢指点。

2 个答案:

答案 0 :(得分:1)

没有自动的方法。但最简单的方法是使用getBBox()使用SVG内容的边界框,然后从中更新widthheight



document.getElementById("btn").addEventListener("click", resizeSVG);


function resizeSVG() {
  var  svg = document.getElementById("card-table");
  // Get the bounds of the SVG content
  var  bbox = svg.getBBox();
  // Update the width and height using the size of the contents
  svg.setAttribute("width", bbox.x + bbox.width + bbox.x);
  svg.setAttribute("height", bbox.y + bbox.height + bbox.y);
}

svg {
  background: green;
}

.card {
  fill: white;
  stroke: black;
  stroke-width: 2;
}

<svg id="card-table" width="300" height="150">
  <rect x="10" y="10" width="35" height="50" class="card"/>
  <rect x="55" y="10" width="35" height="50" class="card"/>
  <rect x="100" y="10" width="35" height="50" class="card"/>
</svg>


<br>
<button id="btn">Resize SVG</button>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您可以将viewBox属性设置为完整大小,并将坐标设置为图表。 完成后,viewBox会缩放以适合容器的widthheight

您可以使用JavaScript动态更改viewBox维度。 因此,在渲染图形后,当您知道尺寸时,可以将相应的边界设置为SVG元素。

<svg id="svgContainer" height="500" width="500" viewBox="0 0 200 200">
    <polygon points="100,10 40,198 190,78 10,78 160,198" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:nonzero;" />
</svg>
<hr/>
<button onclick="setImageSize(300)">Large</button>
<button onclick="setImageSize(100)">Small</button>
<br/>
<button onclick="setViewBox('0 0 100 100')">viewBox - half</button>
<button onclick="setViewBox('0 0 200 200')">viewBox - full</button>

使用JavaScript,

<script>
    function setImageSize(width){
        console.log(width);
        document.getElementById("svgContainer").setAttribute("width", width);
    }

    function setViewBox(viewBoxProperties){
        document.getElementById("svgContainer").setAttribute("viewBox", viewBoxProperties);
    }
</script>