私は画像用のスライダー/サムに使用されるプラグインを使用してワードプレスサイトを持っています。画像の上にマウスを置くとサムネイルが表示され、画像が消えると消えます。私が持っている問題は、ページを下にスクロールすると、サムネイルが再び現れ、消えないことです。それは何とかページスクロールにホバーをバインドしています。ここでjQueryのホバーは、スクロールアップ時にアクティブになっています。
は、サムネイルを表示/非表示にされたスクリプトです:
initAutoHide:function(){// Init Auto Hide
HideID = setInterval(methods.hideItems, parseInt(AutoHideTime));
$('.DOP_ThumbnailGallery_Container', Container).hover(function(){
methods.showItems();
}, function(){
HideID = setInterval(methods.hideItems, parseInt(AutoHideTime));
});
},
showItems:function(){// Show Items
clearInterval(HideID);
ItemsHidden = false;
if (imageLoaded){
$('.DOP_ThumbnailGallery_NavigationLeft', Container).css('display', 'block');
$('.DOP_ThumbnailGallery_NavigationRight', Container).css('display', 'block');
}
if (ThumbnailsPosition == 'top'){
$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).stop(true, true).animate({'margin-top': 0}, 600);
}
if (ThumbnailsPosition == 'right'){
$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).stop(true, true).animate({'margin-left': $('.DOP_ThumbnailGallery_Container', Container).width()-$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).width()}, 600);
}
if (ThumbnailsPosition == 'bottom'){
$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).stop(true, true).animate({'margin-top': $('.DOP_ThumbnailGallery_Container', Container).height()-$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).height()}, 600);
}
if (ThumbnailsPosition == 'left'){
$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).stop(true, true).animate({'margin-left': 0}, 600);
}
methods.showCaption();
},
hideItems:function()
{
clearInterval(HideID);
ItemsHidden = true;
$('.DOP_ThumbnailGallery_NavigationLeft', Container).css('display', 'none');
$('.DOP_ThumbnailGallery_NavigationRight', Container).css('display', 'none');
if (ThumbnailsPosition == 'top'){
$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).stop(true, true).animate({'margin-top': 0-$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).height()}, 600);
}
if (ThumbnailsPosition == 'right'){
$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).stop(true, true).animate({'margin-left': $('.DOP_ThumbnailGallery_Container', Container).width()}, 600);
}
if (ThumbnailsPosition == 'bottom'){
$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).stop(true, true).animate({'margin-top': $('.DOP_ThumbnailGallery_Container', Container).height()}, 600);
}
if (ThumbnailsPosition == 'left'){
$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).stop(true, true).animate({'margin-left': 0-$('.DOP_ThumbnailGallery_ThumbnailsContainer', Container).width()}, 600);
}
methods.hideCaption();
}
},
誰もがないときは、直接画像の上にホバーを殺すために行うための最善のことをお勧めしますか?
ここでは、これにアドオンするには、スクロールしたとき、私は隠すことができるかです:
$(document).scroll(function(){
$(".DOP_ThumbnailGallery_ThumbnailsContainer").hide();
});
は今、ユーザーが戻って画像の上に置くと、どのように私はそれを戻すことができますか?
おかげで、私は過去に同様の問題を持っていた
お返事ありがとうございます!私は、ユーザーがスクロールするときにコンテナを非表示にする方法を見つけましたが、唯一の問題は、ロジックを追加してマウスを動かして戻す方法を知らないことです。ここでは、ページのスクロールで非表示にしたことがあります: $(document).scroll(function(){ $( "#DOP_ThumbnailGallery_ThumbnailsContainer"); hide(); }); ユーザーが移動したときにどのように再表示されるか知っていますか? –