/** * Created by asus80 on 2016/11/08. * by 贾艳妮 */ $(function(){ $("#fullpage").fullpage({ verticalCentered:false, anchors:["page1","page2","page3"], navigation:true, navigationPosition:'right', navigationTooltips:["长元海兴科技","真正好玩有趣的游戏","总有一款是你的style"], afterLoad:function( link ,index ){ switch( index ){ case 1 : move('.section1 h1').scale(1.5).end(); move('.section1 p').set('margin-top','5%').end(); break; case 2 : move('.section2 h1').scale(1.5).end(); move('.section2 img.one').rotate(360).end(function(){ move('.section2 img.two').rotate(360).end(function(){ move('.section2 img.three').rotate(360).end(function(){ move('.section2 img.four').rotate(360).end(function(){ move('.section2 img.five').rotate(360).end(function(){ move('.section2 img.six').rotate(360).end(function(){ move('.section2 img.seven').rotate(360).end(function(){ move('.section2 img.eight').rotate(360).end(function(){ }); }); }); }); }); }); }); }); move('.section2 a').end(); break; default : break; } },onLeave:function( link ,index ){ switch( index ){ case 1 : move('.section1 h1').scale(1).end(); move('.section1 p').set('margin-top','800px').end(); break; case 2 : move('.section2 h1').scale(1).end(); move('.section2 img.one').rotate(-360).end(); move('.section2 img.two').rotate(-360).end(); move('.section2 img.three').rotate(-360).end(); move('.section2 img.four').rotate(-360).end(); move('.section2 img.five').rotate(-360).end(); move('.section2 img.six').rotate(-360).end(); move('.section2 img.seven').rotate(-360).end(); move('.section2 img.eight').rotate(-360).end(); break; default : break; } } }); $('#myCarousel').carousel({ interval:2000 }); });