hoverintent函数有延迟

时间:2011-04-01 15:23:51

标签: javascript jquery

我有以下hoverIntent函数

$(".samplePepleCon").hover(function() 
    {
        var getId           =   $(this).attr('id');             
        var getCompleteID   =   'DataInside_'+getId;                        
        $(this).find(".presTips").delay(800).fadeIn(1000);


        }, function() 
        {
            $(this).find(".presTips").fadeOut("fast");
        }

    );

我想在延迟/暂停可能超过500毫秒后执行function()..请帮助

1 个答案:

答案 0 :(得分:2)

听起来你正在寻找hoverIntent plugin