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
});
});
誰かがこれに対する解決策を知っていますか?