$(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(); } } }); });