/*返回顶部*/ jQuery(document).ready(function(){ //首先将#back-to-top隐藏 // jQuery(".BackToTop").hide(); //当滚动条的位置处于距顶部100像素以下时,跳转链接出现,否则消失 jQuery(function() { jQuery(window).scroll(function(){ if (jQuery(window).scrollTop()>32) { // jQuery(".BackToTop").fadeIn(500); jQuery(".NavBox").stop(true,true).addClass('NavFixed'); } else { jQuery(".NavBox").stop(true,true).removeClass('NavFixed'); // jQuery(".BackToTop").fadeOut(500); } if (jQuery(window).scrollTop()>425) { // jQuery(".From-the-head").stop(true,true).addClass('From-the-height'); jQuery(".ShowB .baoo").addClass("booo"); // jQuery(".ShowBLeft").css("left",$('.ShowBRight').offset().left-180-20+"px"); } else { // jQuery(".From-the-head").stop(true,true).removeClass('From-the-height'); jQuery(".ShowB .baoo").removeClass("booo"); } }); }); });