$(function(){ var pw=new pageswitch('pages',{ duration:1400, //int 页面过渡时间 direction:1, //int 页面切换方向,0横向,1纵向 start:0, //int 默认显示页面 loop:false, //bool 是否循环切换 ease:'ease', //string|function 过渡曲线动画,详见下方说明 transition:'slide', //string|function转场方式,详见下方说明 freeze:false, //bool 是否冻结页面 mouse:true, //bool 是否启用鼠标拖拽 mousewheel:true, //bool 是否启用鼠标滚轮切换 arrowkey:true, //bool 是否启用键盘方向切换 autoplay:false, //bool 是否自动播放幻灯 新增 }); pages=pw.pages; pw.on('before',function(now,prev){//now是切换前当前页面索引 $(pages[now]).removeclass('current'); }); pw.on('after',function(now,prev){//now是切换后当前页面索引 $(pages[now]).addclass('current'); }); pw.settransition('slice'); $(".sy_pro_nav>li").mouseover(function(){ $(this).children("a").addclass("type_bg").parent().siblings().children("a").removeclass("type_bg"); var index = $(this).index(); $(".sy_pro_box>ul").eq(index).stop().animate({left:"0",opacity:1},800).siblings().stop().animate({left:"-100%",opacity:0},800); }) navs=$(".page_nav>li"); i=0; for(;i