每次滾動一個像素數量時我都想顯示一個div,並且在滾動一些圖像後淡出它。我發現了一些邏輯,但最後還是有衝突,div又一次消失了,因爲每當scroll> 250時它都會淡入。 我該如何解決它?使用jquery滾動時淡入淡出
$('#1').hide();
$(window).scroll(function() {
if ($(this).scrollTop() > 250) { //use `this`, not `document`
$('#1').fadeIn();
}
if ($(this).scrollTop() > 1250) { //use `this`, not `document`
$('#1').fadeOut();
}
});