gpt4 book ai didi

如果鼠标已经位于文档准备就绪的元素上,则 jQuery hideIntent 不会触发

转载 作者:行者123 更新时间:2023-12-01 01:50:47 40 4
gpt4 key购买 nike

我正在使用jQuery插件hoverIntent。问题是有时当页面加载时,鼠标已经位于对象'#gallery'上,因此不会触发hoverIntent代码。

这是我的代码示例:

$(document).ready(function(){
$('#gallery').hoverIntent(function(){
$('.gallery-thumbs').stop().animate({'height': '65px'},400); //in code animating a element child within #gallery
},function(){
$('.gallery-thumbs').stop().animate({'height': '33px'}); //out code animating a child element within #gallery
});
});

有人知道这个问题的解决方案吗?

最佳答案

这是您要找的吗?

$(document).ready(function(){
$(document).one("mousemove", function(e) {
if (mouse pointer is on gallery) {
$('.gallery-thumbs').stop().animate({'height': '65px'}, 400);
}
});

$('#gallery').hoverIntent(function() {
$('.gallery-thumbs').stop().animate({'height': '65px'}, 400); //in code animating a element child within #gallery
},function() {
$('.gallery-thumbs').stop().animate({'height': '33px'}); //out code animating a child element within #gallery
});
});

关于如果鼠标已经位于文档准备就绪的元素上,则 jQuery hideIntent 不会触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10938863/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com