YuhangYang (Talk | contribs) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | /* | + | /*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); }
});
});