如果您訪問www.rambocats.com,當頁面加載時,您會看到此底部中央div顯示一兩秒鐘,然後消失。 (Div用粉色字母表示「Gallery II」)。它應該只在您滾動到頁面的2/3左右時纔會出現。如何防止在初始加載過程中顯示?(jquery)在頁面加載過程中阻止div顯示
這裏是jQuery的:
$(document).ready(function(){
var open = false;
$('#homiesSlideButton').click(function() {
if(open === false) {
$('#homiesSlideContent').animate({ height:'610px' });
$(this).css('backgroundPosition', 'bottom left');
$("#homies-wrapper img").peTransitionHilight({ // image highlight/transitions plugin
slideshow:true,
transition:"all",
duration:1500,
delay:4444, boost:0.3
});
open = true;
} else {
$('#homiesSlideContent').animate({ height: '0px' });
$(this).css('backgroundPosition', 'top left');
open = false;
}
});
});
$("#homiesSlideButton").hide();
$(window).scroll(function(){
if($(window).scrollTop()>4444){ // position on page when button appears
$("#homiesSlideButton").fadeIn();
}else{
$("#homiesSlideButton").fadeOut();
}
});
$(window).scroll(function(){
if($(window).scrollTop()>4444){ // position on page when button disappears
$("#homiesSlideContent").fadeIn();
}else{
$("#homiesSlideContent").fadeOut();
}
});
完美;感謝大家。 – Stephen
謝謝,精彩地解釋! – JDavies