gpt4 book ai didi

javascript - 具有 d3.js 和高度属性的响应式 SVG

转载 作者:行者123 更新时间:2023-12-03 01:57:05 25 4
gpt4 key购买 nike

我有两个并排的 div 元素。在第一个 div(称为 #scatterplot)中,有一个自动渲染的图。 SVG 容器大小是使用 d3.js 中的以下代码自动设置的:

var vis = d3.select("#scatterplot")
//container class to make it responsive
.classed("svg-container", true)
.append("svg")
//responsive SVG needs these 2 attributes and no width and height attr
.attr("preserveAspectRatio", "xMinYMin meet")
.attr("viewBox", "0 0 700 700")
//class to make it responsive
.classed("svg-content-responsive", true)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");

对应的CSS代码如下:

.svg-container {
display: inline-block;
position: relative;
width: 100%;
padding-bottom: 100%; /* aspect ratio */
vertical-align: top;
overflow: hidden;
}
.svg-content-responsive {
display: inline-block;
position: absolute;
top: 10px;
left: 0;
}

问题:第二个 div 名为 #wordcloud。我需要根据#scatterplot div调整#wordcloud的高度。有什么建议如何实现这一点吗?

最佳答案

您可以使用d3.style()在内联样式中设置 #wordcloud 高度的方法。例如:

var height = d3.select('#scatterplot').node().getBoundingClientRect().height;
d3.select('#wordcloud').style('height', height + 'px');
div {
width: 50%;
float: left;
}

#scatterplot {
background: #f00;
}

#wordcloud {
background: #0f0;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
<div id="scatterplot">
<p>The text is used<br/>to change height<br/>of red div.</p>
</div>
<div id="wordcloud">
<p>The heights of red and green divs are same.</p>
</div>

关于javascript - 具有 d3.js 和高度属性的响应式 SVG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50186386/

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