gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 14:27:11 24 4
gpt4 key购买 nike

有没有办法如何在小型设备上自动折叠 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');
}
});

关于twitter-bootstrap - 如何在 Bootstrap 中自动折叠小型设备上的面板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18767789/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com