码迷,mamicode.com
首页 > 其他好文 > 详细

导航hover延迟

时间:2019-09-29 09:29:22      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:sharp   ide   highlight   har   csharp   addclass   fun   function   UNC   

 $(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延迟

标签:sharp   ide   highlight   har   csharp   addclass   fun   function   UNC   

原文地址:https://www.cnblogs.com/sdsd123/p/11605840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!