$(function(){ /*返回顶部 只有距离顶部的距离大于300像素时才显示返回顶部*/ $(window).scroll(function(){ var top = $(window).scrolltop(); if(top>50){ $("#back_top").show(); }else{ $("#back_top").hide(); } }); /*返回顶部*/ $("#back_top").click(function(){ $('html,body').animate({scrolltop: '0'}, 800); }); $("#js-search").click(function(){ $(".search").animate({"top":"0"},400); $(".mask").fadein(400); }); $(".search-close,.mask").click(function(){ var search_h = $(".search").outerheight(); $(".search").animate({"top":-search_h},400); $(".mask").fadeout(400) }); //下拉产品分类 $(".select .select-main").each(function(){ $(this).mouseenter(function(){ $(this).find(".select-set").next(".select-block").stop().slidedown(); $(this).find(".select-set").parent().siblings().find(".select-block").slideup("slow"); }).mouseleave(function(){ $(this).find(".select-set").next(".select-block").stop().slideup(); }); $(this).find("ul li").each(function(){ $(this).click(function(){ $(this).addclass("active").siblings().removeclass("active"); var selectval = $(this).html(); $(this).parent().parent().prev(".select-set").html(selectval).css("color","#666"); $(this).parent().parent().slideup("slow"); }); }); }); //窗口大小判断 $(window).resize(function () { screenrespond(); }); screenrespond(); function screenrespond(){ var screenwidth = $(window).width(); if(screenwidth > 1480){ $("body").attr("class",""); } if(screenwidth <= 1480){ $("body").attr("class","middle"); } if(screenwidth <= 1210){ $("body").attr("class","small1"); } } })