Team:SSTi-SZGD/js/Home

/*Follow the height of the window size*/ $(function(){

var winHeight=$(window).height();

if(winHeight>=465){ $(".SSTi-SZGD").css("height",winHeight); $(".topic").css("top",winHeight*0.35); } else{ winHeight=465; $(".SSTi-SZGD").css("height",winHeight); $(".topic").css("top",winHeight*0.35); }

$(window).resize(function(){

winHeight=$(window).height();

if(winHeight>=465){ $(".SSTi-SZGD").css("height",winHeight); $(".topic").css("top",winHeight*0.35); }else{ winHeight=465; $(".SSTi-SZGD").css("height",winHeight); $(".topic").css("top",winHeight*0.35); }

var AbstractHeight=$(".Abstract").outerHeight(); $(".Content").css("height",AbstractHeight);

});

});

/*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); }

});

});