$(function(){ $("#zcfdcd").each(function(){ $(this).find(".btn-wx").mouseenter(function(){ $(this).find(".pic").fadeIn("fast"); }); $(this).find(".btn-wx").mouseleave(function(){ $(this).find(".pic").fadeOut("fast"); }); $(this).find(".btn-phone").mouseenter(function(){ $(this).find(".phone").fadeIn("fast"); }); $(this).find(".btn-phone").mouseleave(function(){ $(this).find(".phone").fadeOut("fast"); }); $(this).find(".btn-top").click(function(){ $("html, body").animate({ "scroll-top":0 },"fast"); }); }); var lastRmenuStatus=false; $(window).scroll(function(){//bug var _top=$(window).scrollTop(); if(_top>200){ $("#zcfdcd").data("expanded",true); }else{ $("#zcfdcd").data("expanded",false); } if($("#zcfdcd").data("expanded")!=lastRmenuStatus){ lastRmenuStatus=$("#zcfdcd").data("expanded"); if(lastRmenuStatus){ $("#zcfdcd .btn-top").slideDown(); }else{ $("#zcfdcd .btn-top").slideUp(); } } }); });