admin管理员组

文章数量:1345131

What is the best way to enable the user to dynamically change the width of columns of a Twitter Bootstrap styled page?

For instance, to add a vertical divider/splitter in the following example?

<div class="container-fluid">
    <div class="row-fluid">
        <div class="span6 resizeMe">Left</div>
        <div class="span6 resizeMe">Right</div>
    </div>
</div>

What is the best way to enable the user to dynamically change the width of columns of a Twitter Bootstrap styled page?

For instance, to add a vertical divider/splitter in the following example?

<div class="container-fluid">
    <div class="row-fluid">
        <div class="span6 resizeMe">Left</div>
        <div class="span6 resizeMe">Right</div>
    </div>
</div>
Share Improve this question asked Aug 24, 2012 at 0:23 mxromxro 6,8885 gold badges39 silver badges39 bronze badges 4
  • 1 jQuery UI .resizable(), jQuery Splitter Plugin, jQuery Layout Plugin - but I am wondering whether there is a specific solution for bootstrap? (or one that will work together with it particularly well) – mxro Commented Aug 24, 2012 at 2:32
  • 2 According to this answer on the maillist there arenot many problems when bining jQuery Layout and Twitter bootstrap. – Sonson123 Commented Mar 23, 2013 at 16:18
  • 1 FYI JQuery Splitter plugin is now deprecated (inpatible with jQuery > 1.8) – zmo Commented Jul 3, 2013 at 9:56
  • 1 there is another jquery splitter here, which appears to still work with jQuery 1.10.2 – vorburger Commented Jul 28, 2013 at 4:09
Add a ment  | 

3 Answers 3

Reset to default 2

If you don't mind it not being animated or dynamically adjustable, here's something I've been working on similar to this with Bootstrap (I'm using 2.1.0, but this should work in any 2.x versions):

Set up a button group:

<div class="btn-group">
        <a href="##" rel="tooltip" title="Make the Directories side dominant" class="btn btn-mini" data-action="dirDom" data-placement="left"><i class="icon icon-indent-left"></i></a>
        <a href="##" rel="tooltip" title="Make both sides equal" class="btn btn-mini" data-placement="left" data-action="equality"><i class="icon icon-resize-horizontal"></i></a>
        <a href="##" rel="tooltip" title="Make the Documents side dominant" class="btn btn-mini" data-placement="left" data-action="fileDom"><i class="icon icon-indent-right"></i></a>
        </div>

Now, here's the JQuery magic:

$(function(){
$('a[data-action="dirDom"]').click(function (){
    $("#dirList").css('display','inline').removeAttr('class').addClass("span12");
    $("#fileList").removeAttr('class').css("display","none");

});
$('a[data-action="equality"]').click(function (){
    $("#dirList").css('display','inline').removeAttr('class').addClass("span6");
    $("#fileList").css('display','inline').removeAttr('class').addClass("span6");
});
$('a[data-action="fileDom"]').click(function (){
    $("#fileList").css('display','inline').removeAttr('class').addClass("span12");
    $("#dirList").removeAttr('class').css("display","none");
});

});

I've been trying to animate it, but haven't had much luck, but this works in terms of making one size fully visible, then the left side fully visible, and finally back to equal sizes. I'm sure better JQuery could be written, but hey, it's a first draft ;)

I don't believe there is a bootstrap way currently, however you can add a class to one of your divs which puts border-left:1px solid #EEE or border-right:1px solid #EEE. The only problem with this solution is your bined span of 12 will now be more than the normal span12 width by 1px and it will push one of the divs to the next line. If it is acceptable to do so you can fix this by making the second div only span5 so your total is span11 + 1px.

It would be nice if bootstrap had a class for this that did not interfere with the normal grid system.

If looking to create left menu bar which can be resized by dragging, jsplitter might be a good fit - https://jsplitter.dilif./p/jsplitter/

Live examples - https://jsplitter.dilif./p/jsplitter/doc/3/3/working-examples/

It has two options -

  • First one works with divs placed in flex box
  • Second works on divs positioned with left one as "position:fixed;width:X;" and right one as "margin-left:X". This is the way side menu's are added in most websites.

本文标签: javascriptSplitter for Twitter BootstrapStack Overflow