我正在使用引导程序,并希望在全屏时使下拉菜单淡入,但是当窗口大小较小时,这看起来不太好,所以我想将其关闭并依赖基本引导程序。这是我的代码。我似乎无法让 if 语句起作用。
if ($(window).width() > 766){
$('.navbar .dropdown').hover(function() {
$(this).find('.dropdown-menu').first().stop(true, true).fadeIn(500)},
function() {
$(this).find('.dropdown-menu').first().stop(true, true).fadeOut(500)
});
};