任何人都可以使用這個JavaScript來幫助我嗎?jQuery .scrollTop混淆
我想div
顯示,當你超過1000個像素向下滾動,目前它與下面的腳本,但滾動時,它立即顯示。
我試着將它設置爲>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);
}
});
});
ü可以包括你的CSS與它一起請。 –