码迷,mamicode.com
首页 > Web开发 > 详细

jQuery – 鼠标经过(hover)事件的延时处理

时间:2017-02-28 13:39:23      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:事件   test   class   ret   return   during   timer   each   clear   

(function($){
    $.fn.hoverDelay = function(options){
        var defaults = {
            hoverDuring: 200,
            outDuring: 200,
            hoverEvent: function(){
                $.noop();
            },
            outEvent: function(){
                $.noop();    
            }
        };
        var sets = $.extend(defaults,options || {});
        var hoverTimer, outTimer;
        return $(this).each(function(){
            $(this).hover(function(){
                clearTimeout(outTimer);
                hoverTimer = setTimeout(sets.hoverEvent, sets.hoverDuring);
            },function(){
                clearTimeout(hoverTimer);
                outTimer = setTimeout(sets.outEvent, sets.outDuring);
            });    
        });
    }      
})(jQuery);

实现

$("#test").hoverDelay({
    hoverEvent: function(){
        alert("经过我!");
    }
});

  

jQuery – 鼠标经过(hover)事件的延时处理

标签:事件   test   class   ret   return   during   timer   each   clear   

原文地址:http://www.cnblogs.com/qianxinxu/p/6478249.html

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