gpt4 book ai didi

svg - 如何制作 svg 大小以适合其内容?

转载 作者:行者123 更新时间:2023-12-03 17:06:37 24 4
gpt4 key购买 nike

我正在使用 svgs 显示扑克牌。我不希望 svgs 缩放,我不知道会有多少张卡片。不过这些卡有固定的大小。 cards as svgs

有没有办法可以轻松地使 svg 容器调整大小以适应内容?
谢谢指点。

最佳答案

没有自动的方法来做到这一点。但最简单的方法是使用 SVG 内容的边界框,使用 getBBox() ,然后更新 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>

关于svg - 如何制作 svg 大小以适合其内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50813950/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com