$(function(){ //鍙充晶杈规爮 $(window).bind("scroll", function(){ var top = $(this).scrolltop(); // 褰撳墠绐楀彛鐨勬粴鍔ㄨ窛绂� if(top>300){ $(".side").css("top",top-100); } if(top==0){ $(".side").css("top","0"); } }); //婊氳疆鎯呭喌涓嬶紝 椤堕儴鑿滃崟 $(window).bind("scroll", function(){ var top = $(this).scrolltop(); // 褰撳墠绐楀彛鐨勬粴鍔ㄨ窛绂� if(top>170){ var height = $("header").height(); $(".header").addclass("heafixe"); settimeout(function(){ $("header").css("transition","all 1s"); },100); settimeout(function(){ $(".header").css("transform","translatey(0px)"); },100); }else{ $(".header").removeclass("heafixe"); settimeout(function(){ $(".header").attr("style",""); },200); } }); //纭欢椤礣ab鍒囨崲 //$(".buy-tab a").click(function(){ // var num = $(this).index(".buy-tab a")+1; // $(".buy-tab a").removeclass("active"); // $(this).addclass("active"); // $(".buy-info > div").hide(); // $(".tab-"+num).show(); //}) });