我一直试图弄清楚这个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 )
我尝试在用户突出显示链接一秒或2后显示简单的工具提示,以显示网址。这是我应该使用的吗?任何帮助将不胜感激。
答案 0 :(得分: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')}
};