jQuery(function() { /*返回顶部*/ $('#return_top').click(function() { //改元素点击的时候 $('html,body').animate({ scrollTop: 0 }, 600); //让 body 的 scroolTop 设为 0 }) /*返回底部*/ var getBottomOffset = $(window).height(); $('#return_bottom').click(function() { //改元素点击的时候 $('html,body').animate({ scrollTop: getBottomOffset }, 600); //让 body 的 scroolTop 设为 0 }) $(window).scroll(function() { if ($(window).scrollTop() > 0) { $('#return_top').fadeIn('slow'); $('#return_bottom').fadeOut('slow'); } else { $('#return_top').fadeOut('slow'); $('#return_bottom').fadeIn('slow'); } }) /*二维码*/ $("#block-erweima").hover(function() { $(this).find(".phone").stop().fadeIn(500); }, function() { $(this).find(".phone").stop().fadeOut(500); }) /*QQ客服*/ $("#block-phone").click(function(e) { e.stopPropagation(); //阻止时间冒泡 $(this).find(".phone").addClass("on").show(200); }) $(document).click(function() { if ($(".phone").hasClass("on")) { $(".phone").hide(); } }) /*电话*/ $("#block-phone-num").hover(function() { $(this).find(".block-phone-num").stop().fadeIn(200); }, function() { $(this).find(".block-phone-num").stop().fadeOut(200); }) })