我遇到的问题可能是代数而不是代码,但这里有。
我需要计算固定比例div(例如300px x 300px)中x列和y行的最佳拟合。换句话说,我有一个300px x 300px的div,它是n个子div的父容器,可以是y行的x列。
根据用户交互,列数和行数可以更改。在每次交互时,我需要重新计算内部面板的尺寸,以便比率(1.69)保持不变,并且面板可以最有效地利用可用空间(父div)。
我可以随时获取列数和行数,并可以相应地调整面板高度和宽度css。
我知道有一个简单的代数计算,但它逃脱了我,我不是JavaScript专家。我已经尝试过使用jQuery的各种实现,但我一直迷路。我不是要求确切的答案 - 任何指针都会有所帮助。
答案 0 :(得分:1)
这一定是你的答案:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js" type="text/javascript"></script>
<script>
$(document).ready(
function ()
{
$("#go_btn").click(
function ()
{
var height = Math.round(300 / $("#h").val())-2;
var width = Math.round(300 / $("#w").val())-2;
//-2 is because of allocating space for borders.
var div = $("<div></div>");
$("#container").html('');
for (i = 0; i < $("#h").val(); i++)
{
for (j = 0; j < $("#w").val(); j++)
{
$("#container").append('<div style="border:1px dotted green;text-align:center;vertical-align:center;float:left;width:' + width + 'px;height:' + height + 'px;">' + i + ' x ' + j + '</div>');
}
}
});
});
</script>
<style>
#container {
width: 300px;
height:300px;
border: 1px solid grey;
}
</style>
<p>Width:
<input type="text" id="w" class="inp" />
</p>
<p>Height:
<input type="text" id="h" class="inp" />
</p>
<p>
<input type="button" value="Go" id="go_btn" />
</p>
<div id="container"></div>
您可以在此处查看:http://jsfiddle.net/3fxDL/