悬停意图延迟
var config = {
sensitivity: 3,
interval: 5000,
timeout: 5000,
};
$("#cart-summary").hoverIntent(function () {
$('.flycart').slideDown('fast');
}, function() {
$('.flycart').slideUp('fast');
}).find('a.close').click(function(){
$(this).parents('.flycart').hide();
});
...这可行,但有两个问题:
它似乎没有等待 5 秒 就像它应该的那样,几乎打开 无论我设置什么,都会立即发生。
影响同一页面上使用hoverintent插件的所有元素。
我真的很感激任何帮助。谢谢!
var config = {
sensitivity: 3,
interval: 5000,
timeout: 5000,
};
$("#cart-summary").hoverIntent(function () {
$('.flycart').slideDown('fast');
}, function() {
$('.flycart').slideUp('fast');
}).find('a.close').click(function(){
$(this).parents('.flycart').hide();
});
...this works, but two issues:
It doesn't seem to wait 5 seconds
like it should, opens almost
instantly no matter what I Set.Affects all elements using the hoverintent plugin on the same page.
I'd really appreciate any help. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您没有将配置对象传递给hoverIntent,因此它使用默认值:
http://cherne.net/brian/resources/jquery.hoverIntent.html
澄清一下,
You're not passing the config object to hoverIntent, so it's using defaults:
http://cherne.net/brian/resources/jquery.hoverIntent.html
To clarify,
这可能更清楚
This might be more clearer