$(document).ready(function(){
$("img").each(function(){
if( ($(this).offset().top + $(this).height()/8) < $(window).height() ){
$(this).attr("src", $(this).attr("x-src"));
}
});
});
window.onscroll = function() {
$("img").each(function(){
if($(this).attr("src") == ""){
if( ($(this).offset().top + $(this).height()/8) < ($(window).height() + $(window).scrollTop())){
$(this).attr("src", $(this).attr("x-src"));
}
}
});
转载于:https://www.cnblogs.com/MiaDeng/p/9759190.html