导航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延迟的主要内容,如果未能解决你的问题,请参考以下文章