const SetupHome = () => { if ($(body).hasClass("type-home")) { let tl = gsap.timeline({repeat:-1,yoyo:true,defaults:{ease:"sine.inOut"}}); tl.fromTo(".area.book",{y:-5},{duration:1,y:5}); $(".wrap.home").slick(Config.slick); $(".wrap.book").hover( function() { gsap.to(this,{duration:0.1,y:-20}); }, function() { gsap.to(this,{duration:0.1,y:0}); }); } } if (Config.install == "library") { $(SetupHome); }