twitter-bootstrap – 如何在bootstrap中自动折叠小设备上的面板?

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 如何在bootstrap中自动折叠小设备上的面板?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法如何在小型设备上自动折叠bootstrap 3.0中的面板?我想达到与顶部导航相同的效果 – 所以当屏幕很小时,屏幕上只显示一个切换按钮.

解决方法

这就是我的工作.
$(document).ready(function(){
  if ($(window).width() <= 480){  
    $('.panel-collapse').removeClass('in');
  }
});

$(window).resize(function(){
  if ($(window).width() >= 480){  
    $('.panel-collapse').addClass('in');
  }
  if ($(window).width() <= 480){  
    $('.panel-collapse').removeClass('in');
  }
});
原文链接:https://www.f2er.com/bootstrap/233966.html

猜你在找的Bootstrap相关文章