使用悬停下拉列表的脚本更改导航栏折叠断点

时间:2015-06-02 18:10:46

标签: html css twitter-bootstrap

我想将导航栏折叠断点更改为1000.下面的脚本用于制作导航栏中的所有下拉菜单,包括navbar-brand,在悬停时下拉。折叠后,点击navbar-brand下降。它完全符合我的要求。

但是现在我还要更改导航栏的断点。

我的问题是如何在评论中使用条件:// you could also use this condition: $( window ).width() >= 768

有人可以告诉我使用此选项的脚本是什么样的吗?如果将768更改为1000,这实际上会改变导航栏崩溃的断点吗?

这是在悬停时切换下拉列表的脚本。

   $( '.dropdown' ).hover(function() {
// you could also use this condition: $( window ).width() >= 768
if ($('.navbar-toggle').css('display') === 'none' 
    && false === ('ontouchstart' in document)) {
    $( '.dropdown-toggle', this ).trigger( 'click' );
}
}, function() {
if ($('.navbar-toggle').css('display') === 'none'
    && false === ('ontouchstart' in document)) {
    $( '.dropdown-toggle', this ).trigger( 'click' );
}
});

小提琴:this Android bug report

0 个答案:

没有答案