我想在jquery中延迟悬停事件。当用户将鼠标悬停在链接或标签上时,我正在读取文件。如果用户只是在屏幕上移动鼠标,我不希望立即发生此事件。有没有办法延迟事件的发射?
谢谢。
示例代码:
$(function() {
$('#container a').hover(function() {
$('<div id="fileinfo" />').load('ReadTextFileX.aspx',
{filename:'file.txt'},
function() {
$(this).appendTo('#info');
}
);
},
function() { $('#info').remove(); }
});
});
更新: (1/14/09) 添加HoverIntent插件后,上面的代码更改为以下代码来实现它。实施起来非常简单。
$(function() {
hiConfig = {
sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
interval: 200, // number = milliseconds for onMouseOver polling interval
timeout: 200, // number = milliseconds delay before onMouseOut
over: function() {
$('<div id="fileinfo" />').load('ReadTextFileX.aspx', {filename:'file.txt'},
function() {
$(this).appendTo('#info');
}
);
}, // function = onMouseOver callback (REQUIRED)
out: function() { $('#info').remove(); } // function = onMouseOut callback (REQUIRED)
}
$('#container a').hoverIntent(hiConfig)
}
答案 0 :(得分:91)
将joverIntent插件用于jquery:http://cherne.net/brian/resources/jquery.hoverIntent.html
它完全适合您所描述的内容,我几乎在每个需要鼠标悬停激活菜单的项目中使用它......
这种方法有一个问题,一些接口缺乏“悬停”状态,例如。移动浏览器,如iphone上的safari。您可能隐藏了界面或导航的重要部分,无法在此类设备上打开它。你可以使用特定于设备的CSS来解决这个问题。
答案 1 :(得分:49)
您需要在悬停时检查计时器。如果它不存在(即这是第一个悬停),请创建它。如果它存在(即不第一个悬停),请将其删除并重新启动它。将计时器有效负载设置为您的代码。
$(function() {
var timer;
$('#container a').hover(function() {
if(timer) {
clearTimeout(timer);
timer = null
}
timer = setTimeout(function() {
$('<div id="fileinfo" />').load('ReadTextFileX.aspx',
{filename:'file.txt'},
function() {
$(this).appendTo('#info');
}
);
}, 500)
},
// mouse out
});
});
我敢打赌jQuery有一个功能可以为你完成这一切。
编辑:啊,是的,jQuery plugin to the rescue
答案 2 :(得分:11)
完全同意hoverIntent是最好的解决方案,但是如果你碰巧是一个不幸的草皮,他在一个网站上工作,有一个漫长而漫长的流程来批准jQuery插件,这里有一个快速而肮脏的解决方案,对我有用:
$('li.contracted').hover(function () {
var expanding = $(this);
var timer = window.setTimeout(function () {
expanding.data('timerid', null);
... do stuff
}, 300);
//store ID of newly created timer in DOM object
expanding.data('timerid', timer);
}, function () {
var timerid = $(this).data('timerid');
if (timerid != null) {
//mouse out, didn't timeout. Kill previously started timer
window.clearTimeout(timerid);
}
});
这只是为了扩展&lt; li&gt;如果鼠标已经超过300毫秒。
答案 3 :(得分:6)
你可以在mouseout事件中使用带有clearTimeout()的setTimeout()调用。
答案 4 :(得分:1)
2016年,Crescent Fresh的解决方案对我没有预期效果,所以我想出了这个:
$(selector).hover(function() {
hovered = true;
setTimeout(function() {
if(hovered) {
//do stuff
}
}, 300); //you can pass references as 3rd, 4th etc. arguments after the delay
}, function() {
hovered = false;
});
答案 5 :(得分:-2)
我的解决方案很简单。如果用户将鼠标中心保持在obj超过300毫秒,则延迟打开菜单:
var sleep = 0;
$('#category li').mouseenter(function() {
sleep = 1;
$('#category li').mouseleave(function() {
sleep = 0;
});
var ob = $(this);
setTimeout(function() {
if(sleep) {
// [...] Example:
$('#'+ob.attr('rel')).show();
}
}, 300);
});