YuhangYang (Talk | contribs) |
YuhangYang (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
/*Lazy loading*/ | /*Lazy loading*/ | ||
$(function(){ | $(function(){ |
Latest revision as of 10:53, 29 October 2017
/*Lazy loading*/ $(function(){
var winHeight=$(window).height(); var AbstractTop=$(".Content").offset().top-$(window).scrollTop();
if(AbstractTop<winHeight-100){ setTimeout(function(){ $(".Abstract").addClass("a-fadeinR"); $(".Abstract").css("display","block"); },150); }
var AbstractHeight=$(".Abstract").outerHeight(); $(".Content").css("height",AbstractHeight);
$(window).scroll(function(){
winHeight=$(window).height(); AbstractTop=$(".Content").offset().top-$(window).scrollTop();
if(AbstractTop<winHeight-100){ setTimeout(function(){ $(".Abstract").addClass("a-fadeinR"); $(".Abstract").css("display","block"); },150); }
});
});