document.write(""); document.write("
"); jQuery(function() { /*���ض���*/ $('#return_top').click(function() { //��Ԫ�ص����ʱ�� $('html,body').animate({ scrollTop: 0 }, 600); //�� body �� scroolTop ��Ϊ 0 }) $(window).scroll(function() { if ($(window).scrollTop() > 0) { $('#return_top').fadeIn('slow'); } else { $('#return_top').fadeOut('slow'); } }) /*��ά��*/ $("#block-erweima").hover(function(){ $(this).find(".phone").stop().fadeIn(500); },function(){ $(this).find(".phone").stop().fadeOut(500); }) $("#block-qq").click(function(e){ e.stopPropagation(); if($(".phone").hasClass("on")){ $(this).find(".phone").removeClass("on").fadeOut(500); }else{ $(this).find(".phone").addClass("on").fadeIn(500); } }) /*�绰*/ $("#block-phone").hover(function(){ $(this).find(".block-phone-num").stop().animate({ 'width' : '130px', 'opacity' : "1" },200); },function(){ $(this).find(".block-phone-num").stop().animate({ 'width' : '0', 'opacity' : "0" },200); }) })