function sszs_focus(tabhd,tabitem){ jQuery(tabhd+","+tabitem).mouseover(function(){ jQuery(tabitem).show();}).mouseout(function(){ jQuery(tabitem).hide();}); } function sszs_fixed(){ var st = jQuery(document).scrollTop(); var winh = jQuery(window).height(); var winw = jQuery(window).width(); //回到顶部 if(st > 0){ jQuery(".sszs_backtop").fadeIn();}else{ jQuery(".sszs_backtop").fadeOut();} if (!window.XMLHttpRequest) { jQuery(".sszs_backtop").css({"top":st + winh - 80}); jQuery("#sszs_weixin").css({"top":st + 170});} //处理相册等部分 if(winw<980){ var leftsize = 530; }else{ var leftsize = (winw-980)/2+530; } if(st>1410){ jQuery("#sszs_fixed").addClass("sszs_fixed"); jQuery(".sszs_fixed").css({"left":leftsize+"px","top":0}); //IE6下的定位 if (!window.XMLHttpRequest) { jQuery(".sszs_fixed").css({"left":leftsize+"px","top":st}); } }else{ jQuery("#sszs_fixed").removeClass("sszs_fixed"); } //引导遮罩 if (!window.XMLHttpRequest) { jQuery("#sszs_overlay").css({"top":st+"px"}); } } function sszs_resize(){ var st = jQuery(document).scrollTop(); var winh = jQuery(window).height(); var winw = jQuery(window).width(); //处理相册等部分 if(winw<980){ var leftsize = 530; }else{ var leftsize = (winw-980)/2+530; } if(st>1410){ jQuery("#sszs_fixed").addClass("sszs_fixed"); jQuery(".sszs_fixed").css({"left":leftsize+"px","top":0}); //IE6下的定位 if (!window.XMLHttpRequest) { jQuery(".sszs_fixed").css({"left":leftsize+"px","top":st}); } }else{ jQuery("#sszs_fixed").removeClass("sszs_fixed"); } //引导遮罩 if (!window.XMLHttpRequest) { jQuery("#sszs_overlay").css({"height":winh+"px"}); } } jQuery(function(){ jQuery("#sszs_header #nav a:not('.nouse')").mouseover(function(){ jQuery(this).addClass("hover");}).mouseout(function(){ jQuery(this).removeClass("hover");}); sszs_focus(" #search_menu","#search_menu_list"); sszs_focus(" #sszs_mycenter","#sszs_mycenter_list"); //针对搜索框 var search_txt = "搜索你喜欢的..."; jQuery("#sszs_search #search_txt").val(search_txt); jQuery("#sszs_search #search_txt").click(function(){ if(jQuery(this).val() == search_txt){ jQuery(this).val("");}}); jQuery(window).bind("scroll",sszs_fixed); jQuery(window).bind("resize",sszs_resize); jQuery(".sszs_backtop").mouseover(function(){ jQuery(this).addClass("sszs_backtop_hover");}).mouseout(function(){ jQuery(this).removeClass("sszs_backtop_hover");}); jQuery(".sszs_backtop").click(function(){ jQuery("html, body").animate({ scrollTop:0 }, 500); return false;}); //jQuery("#close_weixin_win").click(function(){ jQuery("#sszs_weixin").fadeOut(); return false;}); jQuery("#search_menu_list a").click(function(){ jQuery("#search_menu").html(jQuery(this).html()); jQuery("#scbar_mod").val(jQuery(this).attr("rel")); jQuery("#search_menu_list").hide(); return false;}); //主题文字 var curindex = 1; timerID = setInterval(function(){ if(curindex == 1){ jQuery("#header_right #toppic1").fadeOut(1000); jQuery("#header_right #toppic2").fadeIn(1000); }else{ jQuery("#header_right #toppic2").fadeOut(1000); jQuery("#header_right #toppic1").fadeIn(1000); } curindex = (curindex == 1)?2:1; },10000); })