//input $(function(){ $(".text").focus(function(){ if($(this).val() == this.defaultvalue){ $(this).val(""); }; }); $(".text").blur(function(){ if ($(this).val() == ""){ $(this).val(this.defaultvalue); }; }); $(".footer .select").click(function(){ if($(this).hasclass("on")){ $(this).removeclass("on"); $(this).find(".pos").slideup(); }else{ console.log(1) $(".footer .select").removeclass("on"); $(".footer .select .pos").slideup(); $(this).addclass("on"); $(this).find(".pos").slidedown(); } //return false; }); // $("body").click(function(){ // $(".footer .select").removeclass("on"); // $(".footer .select .pos").slideup(); // }) }); $(function(){ var lazyheight = 0; var h = $(window).height(); var w = $(window).width(); function showload(){ lazyheight = $(window).scrolltop(); /*首页*/ if ( lazyheight >= (h - 100) ){ $(".index_box .header").addclass("header_fixed"); } else{ $(".index_box .header").removeclass("header_fixed"); } if ( lazyheight >= (h*0.4 - 90) ){ /*没有二级栏目的页面 一级导航吸顶- p5-1武咨观点*/ $(".page_notwonav .header").addclass("header_fixed"); $(".content").addclass("content_fixed"); } else{ $(".page_notwonav .header").removeclass("header_fixed"); $(".content").removeclass("content_fixed"); } if ( lazyheight >= (h*0.4) ){ $(".page_nav").addclass("page_nav_fixed"); } else{ $(".page_nav").removeclass("page_nav_fixed"); } if ( lazyheight > (h * 0.6) ){ $(".footer").addclass("footer_fixed"); } else{ $(".footer").removeclass("footer_fixed"); } } $(window).bind("scroll", function(){ showload(); }); }); //右侧悬浮 $(function(){ var lazyheights = 0; function showloads(){ lazyheights = $(window).scrolltop(); if ( lazyheights >= 650 ){ $(".suspension").addclass("suspension_fixed"); } else{ $(".suspension").removeclass("suspension_fixed"); } if(lazyheights >= 241){ $('.navinfo').addclass('nav_fixed'); $('.contentindex').addclass('active'); }else{ $('.navinfo').removeclass('nav_fixed'); $('.contentindex').removeclass('active'); } } $(window).bind("scroll", function(){ showloads(); }); $(".suspension .sus").hover(function(){ $(this).find(".pos").stop().animate({'width':'138'}); },function(){ $(this).find(".pos").stop().animate({'width':'0'}); }) $(".navlist").hover(function(){ var ligs = $(this).find("ul").find("li").length; var a_w = $(this).find("ul").width(); $(this).find(".pos").css("width",a_w+10); if(a_w>1201){ $(this).find("li").css("margin-left","10px"); }; if(ligs>0){ $(this).find(".pos").stop().animate({'height':'80'}); $(".drop").stop().addclass("cur"); $(this).find(".pos").css("margin-left",-a_w*0.5); }else{ $(this).find(".pos").stop().animate({'height':'0'}); $(".drop").stop().removeclass("cur"); }; },function(){ $(this).find(".pos").stop().animate({'height':'0'}); $(".drop").stop().removeclass("cur"); }) }); //返回顶部 function gototop(acceleration,stime) { acceleration = acceleration || 0.1; stime = stime || 10; var x1 = 0; var y1 = 0; var x2 = 0; var y2 = 0; var x3 = 0; var y3 = 0; if (document.documentelement) { x1 = document.documentelement.scrollleft || 0; y1 = document.documentelement.scrolltop || 0; } if (document.body) { x2 = document.body.scrollleft || 0; y2 = document.body.scrolltop || 0; } var x3 = window.scrollx || 0; var y3 = window.scrolly || 0; // 滚动条到页面顶部的水平距离 var x = math.max(x1, math.max(x2, x3)); // 滚动条到页面顶部的垂直距离 var y = math.max(y1, math.max(y2, y3)); // 滚动距离 = 目前距离 / 速度, 因为距离原来越小, 速度是大于 1 的数, 所以滚动距离会越来越小 var speeding = 1 + acceleration; window.scrollto(math.floor(x / speeding), math.floor(y / speeding)); // 如果距离不为零, 继续调用函数 if(x > 0 || y > 0) { var run = "gototop(" + acceleration + ", " + stime + ")"; window.settimeout(run, stime); } }; //窗口 $(window).resize(function(){ //location.replace(document.referrer);//返回到上一页 location=location }); $(function(){ $(".new_xq .page_nobanner .prve").click(function(){ // console.log("1") location.replace(document.referrer); }) })