js代码
<script> function animationIn(i){ console.log(i,'i\'m in') switch(i) { case 1: $('.page2 h2').fadeIn(); break; case 2: $('.page3 h2').animate({top:'40%',left:'30%'},1000); break; case 3: setTimeout(function(){ $('.page4 h2').addClass('ani') console.log('hhh') },0) break; default: ; } } function animationOut(i){ console.log(i,'i\'m out') switch(i) { case 1: $('.page2 h2').fadeOut(); break; case 2: $('.page3 h2').animate({top:0,left:0},1000); break; case 3: $('.page4 h2').removeClass('ani') break; default: ; } } </script> <script src='js/mousewheel.js'></script> <script src="js/jquery.touchSwipe.js"></script> <script src="js/cubeTransition.js"></script>
在线预览
资源均来自第三方,谨慎下载,前往第三方网站下载