この JavaScript を手伝ってくれる人はいますか?
1000 ピクセルを超えて下にスクロールしたときに表示したいのですがdiv
、現在は以下のスクリプトで動作しますが、スクロールするとすぐに表示されます。
に設定してみまし>1000
たが、まったく表示されませんか?
何か案は?
$(window).scroll( function(){
/* Check the location of each desired element */
$('.hideme').each( function(i){
/* If the object is completely visible in the window, fade it in */
if ($(this).scrollTop() < 1000){
$(this).animate({'opacity':'1'},900);
}
});
});