// JavaScript Document $(function(){ /*向下滚动时,header背景变半透明*/ $(document).scroll(function(){ var top =$(document).scrollTop(); if(top==0){ $("#header").css("background","rgba(255,132,0,1)"); $(".personal-infor").css("opacity","1"); }else{ $("#header").css("background","rgba(255,132,0,0.8)"); $(".personal-infor").css("opacity","0.8"); } if(top!=0){ $(".searchbox").fadeIn(1000); }else{ $(".searchbox").fadeOut(1000); } if(top>=350){ $("#serc-index").fadeIn(1000); }else{ $("#serc-index").fadeOut(1000); } if(top>=300){ $(".content-left").css({"position":"fixed","top":"80px"}) }else{ $(".content-left").css({"position":"static"}) } }) /*个人信息下拉菜单*/ $('.head-portrait').hover(function(){ $(".personal-infor").stop(true,false).slideDown(500); },function(){ $(".personal-infor").stop(true,false).slideUp(500); }); /*$('.personal-infor').hover(function(){ $(this).slideDown(500); },function(){ $(this).slideUp(500); })*/ /*热门专家*/ $('.professor').hover(function(){ $(this).find(".professor-data").stop(true,false).animate({"padding":"94px 0","top":"-50px"}) },function(){ $(this).find(".professor-data").stop(true,false).animate({"padding":"25px 0","top":"58%"}) }) /*搜索分类展开*/ var i =0; $(".andmore").click(function(){ $(this).find(".updown").css("background-position","left"); $(this).parent().css("height","52px"); if(i%2==0){ }else{ $(this).find(".updown").css("background-position","right"); $(this).parent().css("height","auto"); } i++; }) /*搜索分类背景切换*/ $(".class1").on("click","a",function (){ $(this).addClass("colorbg").siblings().removeClass("colorbg"); }) })