Bootstrap 3: Equal Height Columns with jQuery
When you want height of each have the same height using coloumn of Bootstrap my recommend you should Javascript calculate height of each row if you using css maybe not support all browser.
1. Html Code
2.Css Code
3.jQuery Code
Working Demo
1. Html Code
<div class="row eq-heights"> <div class="eq-col-sm-4 eq-col-md-4 col-md-4"> <div class="content clearfix">column 1 first in source </div> </div> <div class="eq-col-sm-4 eq-col-md-4 col-md-4"> <div class="content clearfix">col 2 second in source </div> </div> <div class="eq-col-sm-4 eq-col-md-4 col-md-4"> <div class="content clearfix"> Third in source. something fdaf fafdafd dafdafdafdaf fdafdf ffdfdfd something fdaf fafdafd dafdafdafdaf fdafdf ffdfdfd something fdaf fafdafd dafdafdafdaf fdafdf ffdfdfd something fdaf fafdafd dafdafdafdaf fdafdf ffdfdfd </div> </div> </div>
2.Css Code
.content { background: #eee none repeat scroll 0 0; border: 1px solid #ccc; padding: 10px; }
3.jQuery Code
$.fn.eqHeights = function(options) { var defaults = { child: false , parentSelector:null }; var options = $.extend(defaults, options); var el = $(this); if (el.length > 0 && !el.data('eqHeights')) { $(window).bind('resize.eqHeights', function() { el.eqHeights(); }); el.data('eqHeights', true); } if( options.child && options.child.length > 0 ){ var elmtns = $(options.child, this); } else { var elmtns = $(this).children(); } var prevTop = 0; var max_height = 0; var elements = []; var parentEl; elmtns.height('auto').each(function() { if(options.parentSelector && parentEl !== $(this).parents(options.parentSelector).get(0)){ $(elements).height(max_height); max_height = 0; prevTop = 0; elements=[]; parentEl = $(this).parents(options.parentSelector).get(0); } var thisTop = this.offsetTop; if (prevTop > 0 && prevTop != thisTop) { $(elements).height(max_height); max_height = $(this).height(); elements = []; } max_height = Math.max(max_height, $(this).height()); prevTop = this.offsetTop; elements.push(this); }); $(elements).height(max_height); }; // run on load so it gets the size: // can't have the same pattern for some reason or it scans the page and makes all the same height. Each row should be separate but it doesn't work that way. $(window).load(function() { //$('[class*="eq-"]').eqHeights(); $('.eq-heights [class*="eq-"]').eqHeights({parentSelector:'.eq-heights'}); });
Working Demo
Comments
Post a Comment