$(function () { $(".weixin img").hide(); $(".weixin").hover(function () { $(this).find("img").fadeIn(); }, function () { $(this).find("img").fadeOut(); }); }) //渚ц竟鏍 $(document).ready(function(){ $(".side ul li").hover(function(){ $(this).find(".sidebox").stop().animate({"width":"124px"},200).css({"opacity":"1","filter":"Alpha(opacity=100)","background":"#40968e"}) },function(){ $(this).find(".sidebox").stop().animate({"width":"54px"},200).css({"background":"#40968e"}) }); //浜岀淮鐮 $('.sb-two-code').mouseover(function () { $('.sb-code-img').show(); }).mouseout(function () { $('.sb-code-img').hide(); }); }); //鍥炲埌椤堕儴 function goTop(){ $('html,body').animate({'scrollTop':0},600); }