$(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":"#ce1717"}) },function(){ $(this).find(".sidebox").stop().animate({"width":"54px"},200).css({"background":"#ce1717"}) }); //二维码 $('.sb-two-code').mouseover(function () { $('.sb-code-img').show(); }).mouseout(function () { $('.sb-code-img').hide(); }); }); //回到顶部 function goTop(){ $('html,body').animate({'scrollTop':0},600); }