0

我一直在试图弄清楚这个 hoverintent 插件和它难倒我。这是我所拥有的:

    var config = {    
     over: $(this).children('.mo_url').css('display','block'), // function = onMouseOver callback (REQUIRED)    
     timeout: 500, // number = milliseconds delay before onMouseOut    
     out: $(this).children('.mo_url').css('display','none') // function = onMouseOut callback (REQUIRED)    
};

    $('.tag').hoverIntent( config )

我试图在用户突出显示链接一两秒后显示一个简单的工具提示,以显示 URL。这是我应该使用的吗?任何帮助将非常感激。

4

1 回答 1

0

成功!这是我所追求的间隔。不是超时。

var config = { 
 over: function(){$(this).children('.mo_url').css('display','block')},
 interval: 1000,  // number = milliseconds delay before function init.
 timeout: 0, // number = milliseconds delay before onMouseOut    
 out: function(){$(this).children('.mo_url').css('display','none')}    
};
于 2011-11-03T01:55:51.800 回答