0

http://jsfiddle.net/jc3rj681/2/

使用插件jQuery UI Layout,我有几个不同的窗格。当用户将窗口调整为小尺寸时,我想调用一个函数来更改窗格的minsizeandsize以便我可以使用窗口使其变小。

我可以这样做,但要应用更改,我必须切换关闭,然后切换打开窗格。这会产生很多闪烁,最终看起来非常凌乱。我只需要这个窗格以这种方式调整大小。

问题:有没有一种方法可以应用这些布局更改而无需切换窗格两次以应用它们?

看看我制作的这个小提琴:http: //jsfiddle.net/jc3rj681/2/

在这里,在切换窗格之前,不会应用对显示/隐藏按钮的“宽度”所做的更改。如果您可以在不切换的情况下进行此宽度更改,我相信它也会解决我的问题。

$("#eastToggle").click(function () {

    testLayout.toggle('east');    
});


$("#attempt").click(function () {
    testLayout.options.east.spacing_closed = 20;
    testLayout.options.east.spacing_open = 20;
});
4

1 回答 1

1

我不确定是否有回调函数或任何特殊的实用方法可以解决问题。

但是您可以尝试以下操作(可能使用手动调整窗格大小的调整大小功能) -

var testLayout = $('body').layout({
  applyDefaultStyles: true,
  east: {
    spacing_closed: 100, //toggler width
    spacing_open: 100,
    togglerLength_closed: 200, //toggler height (length)
    togglerLength_open: 200
  }
});

$("#eastToggle").click(function() {

  testLayout.toggle('east');

});


$("#attempt").click(function() {
  resize('east', 20);
});


// A function to resize the tab
function resize(region, space) {
  // Width of the new center pane
  var newCenterWidth = parseInt($('body .ui-layout-center').css('width').split('px')[0]) + testLayout.options.east.spacing_closed - space;

  // Change the options so they don't affect the layout when you expand / collapse again
  testLayout.options.east.spacing_closed = space;
  testLayout.options.east.spacing_open = space;

  // Manually resize the panes
  $('body .ui-layout-resizer-' + region).css('width', space);
  $('body .ui-layout-center').css('width', newCenterWidth);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://layout.jquery-dev.net/lib/js/jquery.layout-latest.js"></script>
<div class="ui-layout-center">Center</div>
<div class="ui-layout-north">North</div>
<div class="ui-layout-south">South</div>
<div class="ui-layout-east">East</div>
<div class="ui-layout-west">West
  <br/>
  <br/>

  <button id="eastToggle">Toggle East Panel</button>
  <br/>
  <br/>
  <button id="attempt">Change Width?</button>
</div>

于 2015-07-28T23:12:58.190 回答