调整大小时如何更新换行内容div?

时间:2017-09-01 14:49:39

标签: javascript jquery jquery-ui jquery-ui-sortable jquery-ui-resizable

我正在使用jQuery Ui创建一个带有拖动和调整大小的网格,这些元素具有不同类型的内容,文本和图像。当我调整元素的高度时,它不会更新内容高度,例如。例如,不重新计算新的图像高度。

HTML

<div class="column">
    <div class="portlet">
        <div class="portlet-header">Feeds</div>
        <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
    </div>
    <div class="portlet">
        <div class="portlet-header">News</div>
        <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
    </div>
</div>
<div class="column">
    <div class="portlet">
        <div class="portlet-header">Shopping</div>
        <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
    </div>
</div>
<div class="column">
    <div class="portlet">
        <div class="portlet-header">Links</div>
        <div class="portlet-content"><img src="https://s-media-cache-ak0.pinimg.com/736x/12/64/da/1264da4a3f18207dc22592102abae40d--frangipani-tattoo-plumeria-flowers.jpg"></div>
    </div>
</div>

JS

$(function () {
    $(".column").sortable({
        connectWith: ".column",
        placeholder: 'ui-state-highlight',
        forcePlaceholderSize: true
    });

    $(".portlet").resize(function() {
        var myHeight = $(".portlet-content").scrollHeight;
        $(".portlet").outerHeight(myHeight);    
    });

    $(".portlet").resizable().addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all")
        .find(".portlet-header")
        .addClass("ui-widget-header ui-corner-all")
        .prepend("<span class='ui-icon ui-icon-minusthick'></span>")
        .end()
        .find(".portlet-content");
    $(".portlet-header .ui-icon").click(function () {
        $(this).toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick");
        $(this).parents(".portlet:first").find(".portlet-content").toggle();
    });
    $(".column").disableSelection();
});

JsFiddle here尝试使用图片调整框大小,您会看到它没有更新其包装高度

1 个答案:

答案 0 :(得分:1)

好像我已经通过说:

解决了这个问题
$(".portlet").resize(function() {
    $(".portlet").css("height", "auto");
});

并在css中提供:

.portlet-content {
    padding: 5px;
    height: 100%;
    float: left;
}

工作jsFiddle

不确定这是否是最好的方式但是有效