0

在我的项目中,我有一个网页,左右有 2 个 div 区域。左边的 div 占据了整个页面宽度的 60%,右边的 div 占据了页面的 36% 左右。当我从右侧或左侧缩小浏览器时,我想以适当的比例调整两个 div 区域的大小。UI 是从 Javascript 生成的。这是代码。

boardHolderPadding = $board.outerHeight() - $board.height();
$board.height(viewportHeight - siblingsHeight - boardHolderPadding);

this.$('#board .droptarget').setWidthAsRatioOfHeight(this.options.ratio);

$('#sidebar').width($(window).width() - $board.find('#board').width() - 50);

我尝试使用 JQuery 调整大小插件,但无法获得我正在寻找的正确结果。有人有建议吗?

谢谢

4

3 回答 3

1

请参阅jsfiddle 示例,但我认为您只需将宽度设置为百分比,而不是尝试计算它们 - 注意显示设置为inline-block

<div>
    <div class="small-left-column">this is the left column</div>
    <div class="large-right-column">this is the right column</div>
</div>

<style>
.small-left-column {
    width: 30%;
    background-color: #aeaeae;
    display: inline-block;
}
.large-right-column {
    width: 60%;
    background-color: #aeaeae;
    display: inline-block;
}
</style>

所以我认为对于你的例子你会有这样的东西

$(document).ready(function () {
    $('#sidebar').addClass('small-left-column');
    $('#board').addClass('large-right-column');
});
于 2012-07-27T08:50:41.480 回答
0

也许您正在寻找上述的纯 Javascript 版本:

$(document).ready(function () {
    $('#sidebar').css( {
        width: '30%'
        backgroundColor: '#aeaeae',
        display: 'inline-block'
    });
    $('#board').css({
        width: '60%',
        backgroundColor: '#aeaeae',
        display: 'inline-block'
    });
});
于 2012-07-27T19:02:13.627 回答
0

我在Javascript中以不同的方式完成了它,我希望如果他们遇到这样的问题,这将有助于某人解决

relativeSize : function(width, height){
    var boardWidth = this.$("#board").width(),
            boardHeight = this.$("#board").height(), 
            newcard = this.$("#newCard").width(), 
            space = width - boardWidth - newcard;
            ratio = space / width * 3; //used to increment the ratio with 3 as the ratio is very tiny value, this will help to increase minimizing size
            bheight = boardHeight - 25; // used to reduce the height by 25px, u can use any amount to match ur ratio
        var relHeight = (space < ratio) ? bheight : height;
        return relHeight;
  }

谢谢

于 2012-08-07T03:48:48.903 回答