var runPage; runPage = new FullPage({ id : 'pageContainer', // id of contain slideTime : 400, // time of slide continuous : false, // create an infinite feel with no endpoints effect : { // slide effect transform : { translate : 'Y', // 'X'|'Y'|'XY'|'none' scale : [1, 1], // [scalefrom, scaleto] rotate : [0, 0] // [rotatefrom, rotateto] }, opacity : [1, 1] // [opacityfrom, opacityto] }, mode : 'touch,wheel,nav:navBar', // mode of fullpage easing : 'ease', // easing('ease','ease-in','ease-in-out' or use cubic-bezier like [.33, 1.81, 1, 1]; // ,onSwipeStart : function(index, thisPage) { // callback before pageChange // return 'stop'; // } // ,beforeChange : function(index, thisPage) { // callback before pageChange // return 'stop'; // } // ,callback : function(index, thisPage) { // callback when pageChange // alert(index); // }; }); $(function() { $(".flexslider").flexslider({ slideshowSpeed: 4000, //展示时间间隔ms animationSpeed: 400, //滚动时间ms touch: false //是否支持触屏滑动 }); });