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

Pio*_*app 9 twitter-bootstrap

有没有办法如何在小型设备上自动折叠bootstrap 3.0中的面板?我想实现与顶部导航相同的效果 - 所以当屏幕很小时,屏幕上只显示一个切换按钮.

Ken*_* S. 8

这就是我的工作.

$(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');
  }
});
Run Code Online (Sandbox Code Playgroud)