导航hover延迟

Posted sdsd123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了导航hover延迟相关的知识,希望对你有一定的参考价值。

 $(function(){

  var hoverTimer, outTimer;
        $(".nav li").hover(function () {
            var _this = $(this);
            clearTimeout(outTimer);
            hoverTimer = window.setTimeout(function () {
                _this.find(‘a‘).addClass("active");
                _this.find(".addnavul").stop(true, true).slideDown(500);
            },0);
        }, function () {
            clearTimeout(hoverTimer);
            $(this).find(‘a‘).removeClass("active");
            $(this).find(".addnavul").stop(true, true).slideUp(500);

        });
      


 })

 

以上是关于导航hover延迟的主要内容,如果未能解决你的问题,请参考以下文章

由于休息api延迟,视图寻呼机中的第一个片段未显示

js写导航栏hover效果

jQuery中hover事件的延迟

[学习]京东首页顶部导航栏hover

使用导航架构时如何设置“允许重新排序”?

Android中切换标签片段之间的延迟