0
このフィクションでは、イメージがすべてウィンドウ内にあるときにイメージが表示されます。私はそれが75%または窓の真ん中にあるときに画像が上がって来る必要があります。私はどうすればいいですか?ウィンドウを変更する - 場所を確認する - 下から中へ
$(window).on("load",function() {
function fade(pageLoad) {
var min = 0;
var max = 1;
var threshold = 0.01;
$(".fade").each(function() {
/* Check the location of each desired element */
var objectBottom = $(this).offset().top + $(this).outerHeight();
var windowBottom = $(window).scrollTop() + $(window).innerHeight();
/* If the element is completely within bounds of the window, fade it in */
if (objectBottom < windowBottom) { //object comes into view (scrolling down)
if ($(this).css("opacity")<=min+threshold || pageLoad) {$(this).fadeTo(300,max);}
} else { //object goes out of view (scrolling up)
if ($(this).css("opacity")>=max-threshold || pageLoad) {$(this).fadeTo(300,min);}
}
});
} fade(true); //fade elements on page-load
$(window).scroll(function(){fade(false);}); //fade elements on scroll
});