2

我无法让它工作,所以显然我做错了什么......我在菜单的子菜单上创建了一个淡入悬停状态,效果很好,但是当我缩小到移动视图时效果仍然相关的,我不想要,因为移动设备没有悬停状态。所以我在 jquery(window).resize 函数中敲击了我的函数,但它根本不起作用。

jQuery(window).resize(function() {

        var w = jQuery(window).width();

    if (w <= 768 ) {

        jQuery('nav.main-nav li').each(function() {

            var submenu = jQuery(this).find('ul:first');

            jQuery(this).hover(function() {

                submenu.css({opacity: 1});

                submenu.stop().css({overflow:'hidden', height:'auto', display:'none'}).fadeIn(300, function() {
                    jQuery(this).css({overflow:'visible', height:'auto', display: 'block'});
                });
            },
            function() {
                submenu.stop().css({overflow:'hidden', height:'auto', display:'none'}).fadeOut(300, function() {
                    jQuery(this).css({overflow:'hidden', display:'none'});
                });
            });
        });

    }
});
4

1 回答 1

2

而不是使用jQuery(window).width();,

尝试使用document.documentElement.clientWidth

于 2013-08-10T21:02:52.293 回答