我正在使用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
});
});
有谁知道这个的解决方案?