fontsize(); $(window).resize(function(){ fontsize(); }); function fontsize(){ var size; var winw=$(window).width(); if(winw<=1920 && winw>800){ size=math.round(winw/16.5); }else if(winw<=800){ size=math.round(winw/7.5); if(size>65){ size=65; } }else{ size=100; } $('html').css({ 'font-size':size+'px' }) } $(function(){ //-- settimeout(function(){ $('body').addclass('show'); },100); new wow().init(); //-- $('.nava').click(function(){ if($('body').hasclass('navshow')){ $('body').removeclass('navshow noscroll'); $('html,body').removeclass('ovfhiden_m'); //移除使网页不可滚动 }else{ $('body').addclass('navshow noscroll'); $('html,body').addclass('ovfhiden_m'); //使网页不可滚动 } }); $('.nav').find('li').each(function(){ var _=$(this); if($(this).find('.list').length>0){ _.find('a.name').click(function(){ if($(window).width()>800) return; if(_.hasclass('on')){ _.removeclass('on'); _.find('.list').hide(); }else{ _.addclass('on'); _.find('.list').show(); } return false; }); _.hover( function () { _.addclass('curr'); $('.pagenav').addclass('hide') }, function () { _.removeclass('curr'); $('.pagenav').removeclass('hide') } ) } }); //--选项卡 $('.tabcontentdiv').find('.tabcontent:first').show(); $('.tab').each(function(i){ var _this=$(this); var tabcontentdiv=$('.tabcontentdiv').eq(i).find('.tabcontent'); $(this).find('li').each(function(ii){ $(this).click( function(){ _this.find('li').removeclass('on'); $(this).addclass('on'); tabcontentdiv.hide(); tabcontentdiv.eq(ii).show(); } ) }) }); //--返回顶部 $('.topa').click(function(){ $('body,html').stop(true,true).animate({scrolltop:0}, 300); }); //--js下拉选择框 $('.select').each(function(){ var _this=$(this); _this.find('select').change(function(){ _this.find('span').html($(this).find("option:selected").text()); }) }); // $('.input').each(function () { var _ = $(this); _.find('input').focus(function () { _.addclass('on') }); _.find('input').blur(function () { _.removeclass('on') }); _.find('textarea').focus(function () { _.addclass('on') }); _.find('textarea').blur(function () { _.removeclass('on') }) }); $('.scroll').each(function(){ $(this).mcustomscrollbar({ theme:"dark-thin" }) }); var sidenavli = $('.sidenav').find('li'); sidenavli.each(function () { var _ = $(this); if(_.find('dl').length > 0){ _.find('.name').addclass('name2'); _.find('.name').click(function () { if($(this).hasclass('on')) return false; sidenavli.find('.name').removeclass('on'); sidenavli.find('dl').stop(true, true).slideup(300); $(this).addclass('on'); _.find('dl').stop(true, true).slidedown(300); return false; }) } }); $(window).scroll(function () { if($('#sidenav').length === 0) return; if($(window).scrolltop() > $('.sidenav').offset().top - $('.head').height()){ $('#sidenav').addclass('fixed') }else{ $('#sidenav').removeclass('fixed') } }); $(window).scroll(function () { var headh = $('.head').height();//一级导航的高度 var direction = scroll(); //上下滚动 if($(window).scrolltop() > headh){ $('.pagenav').addclass('on'); $('.pagenavsub ').css('opacity','0'); if(direction === 'down'){ $('.head').addclass('hide'); $('.head').addclass('a_on'); $('.nav').find('.list').addclass('hide'); }else if(direction === 'up'){ $('.head').removeclass('hide'); $('.nav').find('.list').removeclass('hide'); } }else{ $('.pagenav').removeclass('on'); $('.pagenavsub ').css('opacity','1'); } }) }); var beforescrolltop = $(window).scrolltop(); function scroll() { var afterscrolltop = $(window).scrolltop(), delta = afterscrolltop - beforescrolltop; beforescrolltop = afterscrolltop; if( delta === 0 ) return false; return(delta > 0 ? "down" : "up"); } //-------弹出对话框 function prompt_fun(a){ $(a).after("
"); $('#layer1').fadeto("fast",0.6); $(a).show(); $('#layer1').click(function(){ close_prompt_fun(a); }) } function close_prompt_fun(a){ $(a).hide(); $('#layer1').fadeout("slow",function(){ $('#layer1').remove(); }); }